An open API service indexing awesome lists of open source software.

https://github.com/monte9/asphalt

Functional React Native App; to push the boundaries of my RN skills
https://github.com/monte9/asphalt

messaging profile react-native react-navigation

Last synced: 4 months ago
JSON representation

Functional React Native App; to push the boundaries of my RN skills

Awesome Lists containing this project

README

          

# Asphalt - Time to hit the road with React Native

### TODO:
- [ ] Write tests using Jest
- [ ] Use MobX for state management
- [ ] Implement React Navigation for navigation across the app
- [ ] Implement full-featured chat functionality
- [ ] Implement social login with Facebook

### React Navigation use cases:

#### Navigate back on button press:

``` js
this.props.navigation.goBack() }
style={{
padding:20,
borderRadius:20,
backgroundColor:'purple',
marginTop:20
}}>
{'Go back a screen this tab'}

```

#### Navigate between tab bars from views:

``` js
this.props.navigation.dispatch({ type:'JUMP_TO_TAB', payload:{index:0} })
}
style={{
padding:20,
borderRadius:20,
backgroundColor:'purple',
marginTop:20
}}>
{'Go back to root tab'}

```