LinkingConfiguration.js 226 B

1234567891011121314
  1. import * as Linking from 'expo-linking';
  2. export default {
  3. prefixes: [Linking.makeUrl('/')],
  4. config: {
  5. Root: {
  6. path: 'root',
  7. screens: {
  8. Home: 'home',
  9. Links: 'links',
  10. },
  11. },
  12. },
  13. };