react-native按钮标题不可见

时间:2019-10-19 10:59:24

标签: react-native button

按钮文本的颜色和按钮背景的颜色似乎相同,因此标题没有出现!

下面是代码:

<Button title="No" style={styles.yesButtonStyle} onPress={this.abc} />                                       

样式:

const styles = StyleSheet.create({
    yesButtonStyle : {
      backgroundColor: Constants.lightGreen,
      height: "12%",
      width:"30%" 
    }
})

2 个答案:

答案 0 :(得分:0)

您可以使用css属性更改按钮标题文本的颜色:

  

color: white;

答案 1 :(得分:0)

尝试像道具一样传递颜色

<Button 
  title="No" 
  color="#000000" 
  style={styles.yesButtonStyle} 
  onPress={this.abc} />