模板出处 https://github.com/thecodingmachine/react-native-boilerplate
路由配置和跳转
路由配置
通过RN提供的api createStackNavigator
里边可以进行配置
- 底部的切换菜单
- 等。。。
路由跳转
RN提供的api NavigationActions
常用属性参考 https://www.jianshu.com/p/b6387ea89b4d
应用样式
示例
- 单位问题
- border圆角示例,border不能简写为
border:1 "solid" "red",const styles = StyleSheet.create({list: {width: 1000},item: {padding: 10,fontSize: 18,height: 44,margin:10,backgroundColor: "#fff",borderWidth: 1,borderRadius:20},});
