ReactNative填坑指南
埋点
1 2 3 4
| Log.logTrace('trace_name', { params:'', ... })
|
statusBar设置
1 2 3
| pageWillAppear() { Device.setStatusBarStyle('darkContent'); }
|
iPhone(X)适配
iPhoneX |
iPhone |
Andriod |
+44 |
+20 |
0 |
1 2
| <View style={Device.isiPhoneX ? {width:width,height:24} : {height:0}}></View> <View style={Platform.OS === 'ios' ? {width:width,height:20} : {height:0}}></View>
|
获取URL参数
1
| this.props.app.urlQuery.*
|
react实现多行文本超出加省略号
1 2 3
| <View numberOfLines={1} style={{overflow:hidden}}/>
|
-
Next Post
python爬虫和数据处理
-
Previous Post
React中的一些小细节