# 懒熊生活用户端
**Repository Path**: huizai/LazyBearLifeView
## Basic Information
- **Project Name**: 懒熊生活用户端
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-04-27
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
######iOS版本在build的时候会卡在build double conversion 这里。
cd node_modules/react-native/scripts && ./ios-install-third-party.sh && cd ../../../
cd node_modules/react-native/third-party/glog-0.3.5/ && ../../scripts/ios-configure-glog.sh
###### 'config.h' file not found
issue https://github.com/facebook/react-native/issues/22521
run cd node_modules/react-native && scripts/ios-install-third-party.sh && cd third-party && cd glog-0.3.4 && ./configure && cd ../../../../
#### 调整react-native-scrollable-tab-view ####
cd node_modules/react-native-scrollable-tab-view
DefaultTabBar.js文件修改:
注释 styles中tab的paddingBottom: 10
修改 styles中tabs的borderWidth为0
给render方法的根节点View增加样式 this.props.tabStyle
render方法中用下面代码替换内容:
{/* */}
index.js文件修改:
给render方法新增样式代码:
在
if (this.props.tabBarUnderlineStyle) {
tabBarProps.underlineStyle = this.props.tabBarUnderlineStyle;
}
代码下新增
if (this.props.tabBarStyle) {
tabBarProps.tabStyle = this.props.tabBarStyle
}
###### :反馈弹窗组件需要修改 react-native-root-toast/lib/ToastContainers
引用Platform
第247行
{Platform.OS === "ios" ? (
{this.props.children}
) : (
{this.props.children}
)}