如何使用 react native 库更改按钮文本的颜色?
我已经使用以下代码进行了尝试。
// styles
button:
{
marginTop: 15,
marginLeft: lrMargin,
marginRight: lrMargin,
color: 'white'
}
<Button
style={styles.button}
status='basic'
color="red"
textColor="red"
>
LOGIN
</Button>