在React-Native-Material-Design模块中更改按钮的背景颜色

时间:2016-07-01 09:45:17

标签: reactjs native

我一直在尝试使用此模块更改按钮的背景颜色" react-native-material-desing"。在文档中(" https://github.com/react-native-material-design/react-native-material-design/blob/master/lib/Button.js")他们说你必须覆盖背景颜色,我认为我做得对,但由于某种原因,它不起作用,没有错误或没有只是颜色保持默认。

继承了渲染中的按钮代码。



				<Button 
					onPress={this.gotoNext.bind(this)}
					text='Login' 
					theme = 'dark'
					textColor  = 'white'
					raised={true} 
					overrides={{backgroundColor: 'red'}}
				/>
&#13;
&#13;
&#13;

任何想法或解决方案?谢谢:))

1 个答案:

答案 0 :(得分:1)

以下是在react-native-material-design中更改背景颜色的方法。 请使用raised=true其他明智的背景颜色不能覆盖。

<Button value="submit"
             raised={true}
             backgroundColor='#F00'
             onPress={//your onPress event here}
             text="Submit"/>