我正在使用rflutter_alert,我目前想在Flutter应用程序中更改DialogButton的背景色,但我没有得到。我应该在哪里用为按钮选择的颜色修改代码?
// Showing Alert Dialog with Response JSON Message.
Alert(
context: context,
type: AlertType.error,
title: "",
desc: "Usuario/Correo o contraseña incorrecta",
buttons: [
DialogButton(
child: Text(
"Cerrar",
style: TextStyle(color: Colors.white, fontSize: 20),
),
onPressed: () => Navigator.pop(context),
width: 120,
)
],
).show();
}
} on TimeoutException catch (e) {
setState(() {
visible = false;
});
Alert
提供了style
参数,可用于自定义默认行为。
Alert(
style: AlertStyle(backgroundColor: Colors.amber),
有关rflutter_alert 的详细信息