flutter_icon_dialog 1.2.1 copy "flutter_icon_dialog: ^1.2.1" to clipboard
flutter_icon_dialog: ^1.2.1 copied to clipboard

Flutter icon dialog is a animated dialog and platform detected dialog from Flutter.

flutter_icon_dialog #

This widget is a simple dialog that deviates from the complex dialog of the flutter.

Flutter

Features #

Installation #

dependencies:
  flutter_icon_dialog: ^<latest_version>

💪 Usage #

1. text dialog #

Default for this widget is Text Alert.

IconDialog.show(
    context: context,
    title: 'Alert',
    content: 'Save successfully',
);

2. icon dialog #

Dialog can take advantage of icon title. The icon includes animation, and here are the icons that you can use.

IconDialog.show(
    context: context, 
    title: "Check", 
    content: "This is Icon", 
    iconTitle: true
);
IconDialog.show(
    context: context, 
    title: "Check", 
    content: "This is Icon", 
    iconTitle: true,
    iconType: AlertIconType.check,
);

3. platform matched dialog #

Dialog works differently depending on the platform. Animation works differently depending on Android or iOS.

That's it! Try it. #

2
likes
140
pub points
57%
popularity

Publisher

verified publishertyrannoapartment.com

Flutter icon dialog is a animated dialog and platform detected dialog from Flutter.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cupertino_icons, flutter, icon_animated

More

Packages that depend on flutter_icon_dialog