在本机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
。
答案 0 :(得分:2)
我正在经历同样的事情,并且找到了一种样式化方式。 在styles.xml中添加:
在AppTheme中添加:
if
然后:
<item name="android:alertDialogTheme">@style/AlertDialogTheme</item>
使用它,并根据需要添加更多自定义值。
答案 1 :(得分:0)
Alert在某种程度上被限制为不可样式化。尝试使警报组件像模式的那样,并按您希望的方式对其进行样式设置!