- React-Navigation v5
- css-in-js : styled-componeng
- GraphQL Client - Apollo Client
- Network Check - NetInfo
$ npx pod-install
$ npx react-native start
$ npx react-native run-ios
$ npx react-native run-android
src
├── assets
│ ├── fonts
│ └── images
├── components
│ └── common
│ ├── Error
│ │ └── index.js
│ └── Loader
│ └── index.js
├── navigations
│ ├── AppNavigator.js
│ ├── AuthNavigator.js
│ ├── RootNavigation.js
│ └── index.js
├── scenes
│ ├── Account
│ │ └── index.js
│ ├── History
│ │ └── index.js
│ ├── Home
│ │ ├── EventPage
│ │ │ └── index.js
│ │ └── index.js
│ ├── Saved
│ │ └── index.js
│ ├── SignIn
│ │ └── index.js
│ └── Splash
│ └── index.js
├── services
│ └── GraphQL
│ └── index.js
├── styles
│ ├── Home
│ │ └── Feed.js
│ ├── NetworkMessage.js
│ ├── RootView.js
│ ├── colors.js
│ ├── index.js
│ ├── mixins.js
│ └── typography.js
└── utils
├── NetworkConnection.js
└── SecureStorage.js
├── navigations
│ ├── AppNavigator.js
│ ├── AuthNavigator.js
│ ├── RootNavigation.js
│ └── index.js
Auth Screen Like SignUp, Forgot password flow comes under AuthNavigator.js
Other Screen Under AppNavigator.js