UNPKG

react-native-embryo

Version:

- [x] Bugfree Xcode & Android setups for multiple build flavors - [x] [React Native Navigation](https://github.com/wix/react-native-navigation) - [x] [MobX](https://github.com/mobxjs/mobx) - [x] Friendly exception handling (no crash :dizzy_face:) - [x] Ce

14 lines (10 loc) 266 B
// @flow import * as React from 'react' import { View, Text } from 'react-native' const page = () => ( <View style={{ padding: 40 }}> <Text style={{ textAlign: 'center' }}>This is another page</Text> </View> ) page.navigatorStyle = {} export default page