belovance / QuickAlert

An instantly ready, full-featured alerts for development on any platform with flutter. Enabling you to complete projects and deploy quickly. With QuickAlert, you can display animated alert dialogs such as success, error, warning, confirm, loading or even a custom dialog.
https://pub.dev/packages/quickalert
MIT License
46 stars 42 forks source link

On hover color on web #38

Open progressify opened 2 months ago

progressify commented 2 months ago

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

image image