├── .gitignore ├── README.md ├── __tests__ └── create-account.test.js ├── app.json ├── app ├── (auth) │ ├── create-account.js │ └── login.js ├── (tabs) │ ├── _layout.js │ ├── home │ │ ├── _layout.js │ │ ├── details.js │ │ ├── index.js │ │ └── new-entry-modal.js │ └── settings │ │ ├── _layout.js │ │ └── index.js ├── _layout.js ├── home2.js └── index.js ├── babel.config.js ├── index.js ├── package.json └── store.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/create-account.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/__tests__/create-account.test.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app.json -------------------------------------------------------------------------------- /app/(auth)/create-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/(auth)/create-account.js -------------------------------------------------------------------------------- /app/(auth)/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/(auth)/login.js -------------------------------------------------------------------------------- /app/(tabs)/_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/(tabs)/_layout.js -------------------------------------------------------------------------------- /app/(tabs)/home/_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/(tabs)/home/_layout.js -------------------------------------------------------------------------------- /app/(tabs)/home/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/(tabs)/home/details.js -------------------------------------------------------------------------------- /app/(tabs)/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/(tabs)/home/index.js -------------------------------------------------------------------------------- /app/(tabs)/home/new-entry-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/(tabs)/home/new-entry-modal.js -------------------------------------------------------------------------------- /app/(tabs)/settings/_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/(tabs)/settings/_layout.js -------------------------------------------------------------------------------- /app/(tabs)/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/(tabs)/settings/index.js -------------------------------------------------------------------------------- /app/_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/_layout.js -------------------------------------------------------------------------------- /app/home2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/home2.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/app/index.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import "expo-router/entry"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/package.json -------------------------------------------------------------------------------- /store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronksaunders/reactnative-file-router-1/HEAD/store.js --------------------------------------------------------------------------------