QuickAlert icon indicating copy to clipboard operation
QuickAlert copied to clipboard

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 suc...

Results 16 QuickAlert issues
Sort by recently updated
recently updated
newest added

**Describe the solution you'd like** 1. Editable Title Style: I need the ability to control the title's appearance. This includes functions like: Font size adjustment: Allow me to make the...

How could I change this? It looks way to big, especially for small devices: ![image](https://github.com/belovance/QuickAlert/assets/5629919/173c0668-74c0-4dd6-bb61-11722bb4e357) Sometimes, buttons are not even displayed at all

bug

I try to use QuickAlert.confirm on a drawer. When I use function that handle click when using attributes : onConfirmBtnTap and onCancelBtnTap, it's doesn't work and the alert window does...

bug

` extension AlertExtension on BuildContext { void showQuickAlertFeatureNotYetAvailable() { QuickAlert.show( context: this, type: QuickAlertType.warning, text: 'This feature is not yet available.', customAsset: 'assets/images/coming_soon.jpg' ); } ` ![image](https://github.com/belovance/QuickAlert/assets/48196420/cb6e9d42-447a-4be3-9915-366fcedbf986)

enhancement

error message: ════════ Exception caught by rendering library ═════════════════════════════════ The following assertion was thrown during layout: A RenderFlex overflowed by 27 pixels on the bottom. ![Screenshot 2024-06-12 184058](https://github.com/belovance/QuickAlert/assets/170493047/1d4aeacf-e2ae-4b8f-bf79-55b6ad5ee2c8)

bug

**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,...

enhancement

Fixes Issue #35 header size is now to customize Fixes #37 by using an scroll controller that allows to scroll to the buttons Fixes compiler warning deprecated WillPop and RawKeyBoardlistener

bug
enhancement

excess space when showCancel/ConfirmButton set to false. when type set to confirm the showCancelButton is set to true no matter what, so I add little description in the readme.md

bug
documentation
enhancement

**Is your feature request related to a problem? Please describe.** Everything is great out-of-the-box but there doesn't seem to be a way to customize the button styles. **Describe the solution...

### **Describe the bug** It is not currently possible to dynamically update components (e.g., progress bars or percentage text) inside the `QuickAlert` dialog. Since `QuickAlert.show` does not return a widget...