Skip to content

tamlm/RNExperimental

 
 

Repository files navigation

React Native - react-navigation / redux experimental boiler plate

Installation & Getting Started

Simply clone the repo and install

npm install
npm start react-native

Application flow

The application runs as a TabNavigator containing StackNavigator components. The main TabNavigator is nested inside a higher level StackNavigator which in turn sits inside an application container (connected smart component).

+-- index.ios.js
|   +-- app.navigation.js
|       +-- app/
|           +-- containers/rootContainer.js
|               +-- store/configureStore.js
|               +-- navigators/root.js      [StackNavigator]
|                   +-- Home                [TabNavigator]
|                       +-- List            [StackNavigator]
|                           +-- ...Screens  [Multiple Screens]
|                       +-- Groups          [StackNavigator]
|                       +-- Stats           [StackNavigator]
|                       +-- User            [StackNavigator]
|                       +-- Admin           [StackNavigator]
|                   +-- Settings            [Screen]

Isues to be aware of

The demo uses the https://material.io/icons/ icon set. On IOS this will need to be added to the project prior to running. I used xcode to achieve this.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 70.1%
  • Objective-C 17.5%
  • Python 6.5%
  • Java 5.9%