react-native-button报错
来源:
兜兜
2016-09-28
已经npm 安装了 版本是1.7.1
写回答
1回答
-
Scott
2016-09-28
应该是 react native 跟特定的 button 版本不兼容了,其实这个 button 不用这个组件也罢,先用触摸组件替换一下,丢到这里,把课程跟完,然后,再来花时间研究版本不兼容问题,版本问题不值得花大气力来调试。
<TouchableOpacity style={styles.button} onPress={this._onPressButton}> <Text style={styles.buttonText}>xdxdxd</Text> </TouchableOpacity>
自己来定义一下 button 和 buttonText 的样式,如果是 class component 开发的话,_onPressButton 需要 bind
this. _onPressButton.bind(this)
00
相似问题