QuickAlert
QuickAlert copied to clipboard
On hover color on web
Is your feature request related to a problem? Please describe. I noticed that the hover color on flutter web is not customizable (screen attached)
QuickAlert.show(
context: context,
type: QuickAlertType.error,
title: title,
text: desc,
confirmBtnText: "OK",
confirmBtnColor: Color.blue,
);
Describe the solution you'd like
QuickAlert.show(
context: context,
type: QuickAlertType.error,
title: title,
text: desc,
confirmBtnText: "OK",
confirmBtnHoverColor: Color.red,
confirmBtnColor: Color.blue,
);
Additional context