Status: The project could not be completed within the deadline.
- clone the repository
yarn install
yarn start
-> starts the expo dev server.- Install the Expo Go app and scan the QR code on the terminal.
- This is a React Native app created with Expo.
- Styling is done mostly with tailwind through tailwind-react-native-classnames package - twrnc
- Redux store and Redux toolkit query is set up but not yet implemented in the home page
- Routing is done with Expo Router, following a file based routing pattern.
- /onboarding screens are handled with Stack routing pattern
- index route
/
is handled as a Tab layout.
- Onboard completion state is handled with AsyncStorage
- Configured font loading and onboard redirections in
app/_layout.ts
. Splash screen does not hide until initial loading is complete.
All the source code is under src/
directory.
app
-> screens and routing logicassets
-> static assets (images and fonts)components
-> react componentsconstants
-> planned to hold theme variableshooks
-> react hooksservices
-> business logic & api servicestypes
-> typescript type & interface definitionsutils
-> utility functions
- For some reason I can't style the
Pressable
component. Fix it so it is styled according to design requirements. - Finish styling all the screens.
- Screens have too much JSX, split up into reusable components.
- Implement API fetching in home
/
screen with rtk-query