├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── App.tsx ├── LICENSE ├── README.md ├── app.json ├── assets ├── fonts │ ├── SpaceMonoBold.ttf │ ├── SpaceMonoBoldItalic.ttf │ ├── SpaceMonoItalic.ttf │ └── SpaceMonoRegular.ttf └── images │ ├── adaptive-icon.png │ ├── dumbledore.jpeg │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package.json ├── src ├── api │ └── index.ts ├── components │ ├── PointDetector.tsx │ ├── StyledText.tsx │ ├── Themed.tsx │ ├── __tests__ │ │ └── StyledText-test.js │ └── signInModal.tsx ├── constants │ ├── Colors.ts │ ├── Routes.ts │ ├── Theme.ts │ └── index.ts ├── contexts │ └── theme.tsx ├── navigation │ ├── AuthNavigator │ │ └── index.tsx │ ├── CommonNavigator │ │ └── index.tsx │ ├── HomeNavigator │ │ └── index.tsx │ ├── RootNavigator │ │ └── index.tsx │ ├── TabNavigator │ │ └── index.tsx │ └── index.tsx ├── redux │ ├── hook.ts │ ├── slices │ │ ├── authSlice.ts │ │ └── preferencesSlice.ts │ └── store.ts ├── screens │ ├── Auth │ │ └── Welcome.tsx │ ├── LeaderBoard │ │ └── index.tsx │ ├── MagicList │ │ └── index.tsx │ ├── NotFound.tsx │ ├── Profile │ │ └── index.tsx │ ├── StartMagic │ │ └── index.tsx │ ├── Wand │ │ └── index.tsx │ ├── index.ts │ └── informationModal │ │ └── index.tsx ├── theme │ ├── components │ │ ├── HPButton.tsx │ │ ├── HPDivider.tsx │ │ ├── HPLoader.tsx │ │ ├── HPPressable.tsx │ │ ├── HPText.tsx │ │ ├── HPView.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── layout.ts │ └── spacing.ts └── types │ └── Navigation.ts ├── tsconfig.json ├── types.tsx └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/App.tsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/app.json -------------------------------------------------------------------------------- /assets/fonts/SpaceMonoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/assets/fonts/SpaceMonoBold.ttf -------------------------------------------------------------------------------- /assets/fonts/SpaceMonoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/assets/fonts/SpaceMonoBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/SpaceMonoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/assets/fonts/SpaceMonoItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/SpaceMonoRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/assets/fonts/SpaceMonoRegular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/dumbledore.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/assets/images/dumbledore.jpeg -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/package.json -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/components/PointDetector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/components/PointDetector.tsx -------------------------------------------------------------------------------- /src/components/StyledText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/components/StyledText.tsx -------------------------------------------------------------------------------- /src/components/Themed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/components/Themed.tsx -------------------------------------------------------------------------------- /src/components/__tests__/StyledText-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/components/__tests__/StyledText-test.js -------------------------------------------------------------------------------- /src/components/signInModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/components/signInModal.tsx -------------------------------------------------------------------------------- /src/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/constants/Colors.ts -------------------------------------------------------------------------------- /src/constants/Routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/constants/Routes.ts -------------------------------------------------------------------------------- /src/constants/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/constants/Theme.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/contexts/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/contexts/theme.tsx -------------------------------------------------------------------------------- /src/navigation/AuthNavigator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/navigation/AuthNavigator/index.tsx -------------------------------------------------------------------------------- /src/navigation/CommonNavigator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/navigation/CommonNavigator/index.tsx -------------------------------------------------------------------------------- /src/navigation/HomeNavigator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/navigation/HomeNavigator/index.tsx -------------------------------------------------------------------------------- /src/navigation/RootNavigator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/navigation/RootNavigator/index.tsx -------------------------------------------------------------------------------- /src/navigation/TabNavigator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/navigation/TabNavigator/index.tsx -------------------------------------------------------------------------------- /src/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/navigation/index.tsx -------------------------------------------------------------------------------- /src/redux/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/redux/hook.ts -------------------------------------------------------------------------------- /src/redux/slices/authSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/redux/slices/authSlice.ts -------------------------------------------------------------------------------- /src/redux/slices/preferencesSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/redux/slices/preferencesSlice.ts -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/screens/Auth/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/screens/Auth/Welcome.tsx -------------------------------------------------------------------------------- /src/screens/LeaderBoard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/screens/LeaderBoard/index.tsx -------------------------------------------------------------------------------- /src/screens/MagicList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/screens/MagicList/index.tsx -------------------------------------------------------------------------------- /src/screens/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/screens/NotFound.tsx -------------------------------------------------------------------------------- /src/screens/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/screens/Profile/index.tsx -------------------------------------------------------------------------------- /src/screens/StartMagic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/screens/StartMagic/index.tsx -------------------------------------------------------------------------------- /src/screens/Wand/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/screens/Wand/index.tsx -------------------------------------------------------------------------------- /src/screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/screens/index.ts -------------------------------------------------------------------------------- /src/screens/informationModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/screens/informationModal/index.tsx -------------------------------------------------------------------------------- /src/theme/components/HPButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/theme/components/HPButton.tsx -------------------------------------------------------------------------------- /src/theme/components/HPDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/theme/components/HPDivider.tsx -------------------------------------------------------------------------------- /src/theme/components/HPLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/theme/components/HPLoader.tsx -------------------------------------------------------------------------------- /src/theme/components/HPPressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/theme/components/HPPressable.tsx -------------------------------------------------------------------------------- /src/theme/components/HPText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/theme/components/HPText.tsx -------------------------------------------------------------------------------- /src/theme/components/HPView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/theme/components/HPView.tsx -------------------------------------------------------------------------------- /src/theme/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/theme/components/index.ts -------------------------------------------------------------------------------- /src/theme/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/theme/components/types.ts -------------------------------------------------------------------------------- /src/theme/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/theme/layout.ts -------------------------------------------------------------------------------- /src/theme/spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/theme/spacing.ts -------------------------------------------------------------------------------- /src/types/Navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/src/types/Navigation.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/types.tsx -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corupta/wander-app/HEAD/yarn.lock --------------------------------------------------------------------------------