QuickAlert
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...
**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:  Sometimes, buttons are not even displayed at all
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...
` 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' ); } ` 
error message: ════════ Exception caught by rendering library ═════════════════════════════════ The following assertion was thrown during layout: A RenderFlex overflowed by 27 pixels on the bottom. 
**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,...
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
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
**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...