├── .eslintrc.js ├── .gitignore ├── .prettierrc.json ├── README.md ├── babel.config.js ├── examples └── eg │ ├── .expo-shared │ └── assets.json │ ├── .gitignore │ ├── App.tsx │ ├── app.json │ ├── assets │ ├── icon.png │ └── splash.png │ ├── babel.config.js │ ├── gatsby-config.js │ ├── package.json │ ├── readme.md │ ├── src │ └── pages │ │ ├── Profile.tsx │ │ └── index.tsx │ ├── tsconfig.json │ └── yarn.lock ├── expo-gatsby-navigation-0.0.6.tgz ├── jest-preprocess.js ├── jest.config.js ├── loadershim.js ├── package.json ├── src ├── components │ ├── Link │ │ ├── index.tsx │ │ ├── index.web.tsx │ │ └── types.ts │ ├── __tests__ │ │ └── Link-test.web.tsx │ └── index.ts ├── hooks │ ├── index.ts │ ├── use-focus-effect │ │ └── index.ts │ └── use-routing │ │ ├── index.ts │ │ ├── index.web.ts │ │ └── types.ts ├── index.ts └── utils │ └── empty.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/babel.config.js -------------------------------------------------------------------------------- /examples/eg/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/.expo-shared/assets.json -------------------------------------------------------------------------------- /examples/eg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/.gitignore -------------------------------------------------------------------------------- /examples/eg/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/App.tsx -------------------------------------------------------------------------------- /examples/eg/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/app.json -------------------------------------------------------------------------------- /examples/eg/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/assets/icon.png -------------------------------------------------------------------------------- /examples/eg/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/assets/splash.png -------------------------------------------------------------------------------- /examples/eg/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/babel.config.js -------------------------------------------------------------------------------- /examples/eg/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/gatsby-config.js -------------------------------------------------------------------------------- /examples/eg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/package.json -------------------------------------------------------------------------------- /examples/eg/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/readme.md -------------------------------------------------------------------------------- /examples/eg/src/pages/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/src/pages/Profile.tsx -------------------------------------------------------------------------------- /examples/eg/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/src/pages/index.tsx -------------------------------------------------------------------------------- /examples/eg/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/tsconfig.json -------------------------------------------------------------------------------- /examples/eg/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/examples/eg/yarn.lock -------------------------------------------------------------------------------- /expo-gatsby-navigation-0.0.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/expo-gatsby-navigation-0.0.6.tgz -------------------------------------------------------------------------------- /jest-preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/jest-preprocess.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/jest.config.js -------------------------------------------------------------------------------- /loadershim.js: -------------------------------------------------------------------------------- 1 | global.___loader = { 2 | enqueue: jest.fn(), 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/src/components/Link/index.tsx -------------------------------------------------------------------------------- /src/components/Link/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/src/components/Link/index.web.tsx -------------------------------------------------------------------------------- /src/components/Link/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/src/components/Link/types.ts -------------------------------------------------------------------------------- /src/components/__tests__/Link-test.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/src/components/__tests__/Link-test.web.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/use-focus-effect/index.ts: -------------------------------------------------------------------------------- 1 | export { useFocusEffect as default } from 'expo-navigation-core' 2 | -------------------------------------------------------------------------------- /src/hooks/use-routing/index.ts: -------------------------------------------------------------------------------- 1 | export { useRouting as default } from 'expo-navigation-core' 2 | -------------------------------------------------------------------------------- /src/hooks/use-routing/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/src/hooks/use-routing/index.web.ts -------------------------------------------------------------------------------- /src/hooks/use-routing/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/src/hooks/use-routing/types.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils/empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/src/utils/empty.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/expo-gatsby-navigation/HEAD/yarn.lock --------------------------------------------------------------------------------