如何在React Native中更改警报按钮的颜色?

时间:2019-09-06 03:59:09

标签: javascript android react-native

在本机Android中,我们可以像here一样在Alert Dialog中更改按钮颜色。

如何在Alert中为React Native执行类似的样式?

这是我的Alert代码:

Alert.alert(
    'Alert Title',
    'Alert Message / Description?',
    [
        { text: 'No', onPress: () => this.actionNo() },
        { text: 'Yes', onPress: () => this.actionYes() }
    ],
    { cancelable: false }
);

注意:这不是重复的。在这里,我询问了如何使用Alert对话框样式,而不将实现更改为Model

2 个答案:

答案 0 :(得分:2)

我正在经历同样的事情,并且找到了一种样式化方式。 在styles.xml中添加:

在AppTheme中添加:

if

然后:

<item name="android:alertDialogTheme">@style/AlertDialogTheme</item>

使用它,并根据需要添加更多自定义值。

答案 1 :(得分:0)

从本地模块导入

Alert在某种程度上被限制为不可样式化。尝试使警报组件像模式的那样,并按您希望的方式对其进行样式设置!

Please refer here