awesome_alert 1.2.0
awesome_alert: ^1.2.0 copied to clipboard
A highly customizable Flutter library for creating beautiful alerts, loading indicators, image dialogues, and list alerts with ease.
1.2.0 #
- API Modernization: Introduced new static methods for a cleaner developer experience:
AwesomeAlert.show,showLoading,showImage,showList, andshowCustom. - Standardized Parameter Names: Renamed parameters to follow Flutter conventions (e.g.,
insetPadding,contentPadding,showCloseButton,onDismiss). - New Feature: Added
backgroundColorsupport toshowCustom. - Backward Compatibility: Marked existing instance-based methods as
@deprecatedwith clear migration paths. - Documentation: Added comprehensive Dartdoc comments to all public members.
- Structure: Moved example project to the root
example/folder. - Typing: Improved type safety by using
VoidCallbackfor alert actions. - Quality: Revamped
README.mdand optimizedpubspec.yamlmetadata.
1.1.6 #
- Fix Platform Check for Web.
1.1.5 #
- Update Lib HTML core.
1.1.4 #
- Removed selectableText in default modal for iOS to avoid exceptions with context.
1.1.3 #
- Fix closebutton parameter in showAlert method.
1.1.2 #
- Add conditional spacing for close button in alert title
1.1.1 #
- added the AwesomeAlertTheme().borderRadius to default theme
1.1.0 #
- added the fizedSize property to alerts, allowing you to set a fixed width, ideal for web use. AwesomeAlertTheme().fixedSize = 600; or showAlert(fixedSize:600,...)
1.0.2 #
- Updated HTML extension to be compat with webview_flutter: ^4.10.0.
1.0.1 #
- internalBodyPadding on singleton AwesomeAlertTheme.
1.0.0 #
- New options on singleton AwesomeAlertTheme.
- AwesomeAlert(context:context).showAlert([...]) added option |bool? showCloseButton|
0.1.8 #
- showAlert isHtml property added for descripton html.
- Added comments in the code.
0.1.7 #
- Fix alertImage loading size.
0.1.6 #
- Option to set button function and title in Alert List.
0.1.5 #
- Option to set space between lines in Alert List.
0.1.4 #
- Alert list.
0.1.3 #
- Changed the type of image that will be loaded, supported local image, file and web url.
0.1.2 #
-
Now it is possible to define a default theme that will be used if it does not contain a definition in the method call. To configure the default theme, just call the AwesomeAlertTheme().confirmButtonColor = Theme.of(context).colorScheme.onPrimary; and define existing properties.
-
Changed the names of some properties to make them more intuitive.
0.1.1 #
- Checking canPop on hide alert.
0.1.0 #
- Comments on code.
0.0.9 #
- Default button color of default alert changed to Theme.colorScheme of project.
- Update flutter sdk.
0.0.8 #
- Default text color of alert changed to Colors.white.
0.0.7 #
- Updated readme, edded example.
0.0.5 #
- Fix on "awesomeAlert.alertImage()" properties.
0.0.4 #
- Add AlertImage "awesomeAlert.alertImage()", simple way to you can load image from web or local image into alert.
- Fix body of showAlert properties.
0.0.3 #
- just to fix the post display on pub.dev.
0.0.2 #
- Add Alert loading "awesomeAlert.alertLoading()".
0.0.1 #
- Simple alert "awesomeAlert.showAlert()).
- Simple alert with custom body "awesomeAlert.showCustomAleert()".