A native application built with React Native
- Refer to this website for the instructions on how to install yarn package manager: https://classic.yarnpkg.com/en/docs/install/#windows-stable
- expo tabs template has been used as starting point
- uses
@react-navigation/nativefor navigation (imported differently from standard docs) - For UI Component the options currently are:
yarn global add expo-cli
yarn install
- Run
expo start - Open the URL provided
- Set connection mode to
tunnel(this mode will require internet) - Scan QR Code with expo app on Android or iOS
Before generating types please installing apollo and apollo-codegen and following are the commands:
- yarn global add apollo
- yarn global add apollo-codegen
apollo client:codegen \
--excludes=node_modules/* \
--includes=**/*.tsx \
--endpoint http://gavelapi.ontariotechu.xyz:8000/graphql/ \
--target typescript \
--tagName=gql \
--outputFlat constants/generated \
--tsFileExtension=tsx