Rn开发过程遇到的坑

1、文字垂直居中:heightlineHeight要保持一致。
2、ios运行报Native module cannot be null.错误,注释./node_modules/react-native/Libraries/EventEmitter/NativeEventEmitter.js文件的invariant(nativeModule, 'Native module cannot be null.');代码。
3、组件浮动可设置position属性,有absoluterelative两种。absolute是根据父控件定位,脱离文档流;relative根据原先位置定位,不会脱离文档流。widthheight设置宽高,topleft属性设置偏离值。
4、FlatList添加数据过多后会超出显示区域并且不能滑动。解决方法:FlatList 组件上加入flex:1 ,以及其父组件同样加上flex:1

你可能感兴趣的:(android)