如何样式对话框按钮在NativeScript

How to style dialog button in NativeScript?

本文关键字:对话框 按钮 NativeScript 样式 何样式      更新时间:2023-09-26

升级到最新的NativeScript版本后,我的警报和对话框按钮是白色的。请帮我找回它原来的黑色…

var dialogs = require("ui/dialogs");
	dialogs.alert({
	  title: "Be Aware",
	  message: "Make sure you receive money from the customer before you REDEEM.",
	  okButtonText: "Customer Paid"
	}).then(function () {
	  console.log("Dialog closed!");
	});

客户付费按钮为白色

解决方案已在评论中找到。

此问题与为另一个按钮生成的CSS属性有关。

这个属性也影响了模态中的按钮。

<<p> 解决方案/strong>

为模式按钮使用另一个类/id/选择器

使用与其他按钮相同的选择器,并更改CSS

中的值