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

flutter_native_alert offers the ability to display Android and iOS native dialog and toast

flutter_native_alert #

💨🚀 flutter_native_alert offers the ability to display Android and iOS native dialog and toast

Get started #

Add dependency #

dependencies:
  flutter_native_alert: ^1.2.1

Usage and screenshots #

Native Dialog for Android and iOS
/// If ret is true, click OK, if false, click cancel
bool ret = await FlutterNativeAlert.getInstance().showConfirm(
  title: "Welcome to use",
  message: "flutter_native_alert offers the ability to display Android and iOS native dialog and toast",
  confirmButtonText: "OK",  /// Optional, the text of the confirmation button, null means that the button is not displayed
  cancelButtonText: "Cancel", /// Optional, the text of the cancel button, null means that the button is not displayed
);

/// If you need to close the Dialog in the code
FlutterNativeAlert.getInstance().hideConfirm();



Native Toast for Android and iOS
/// Pass in the string to be displayed, the default display time is 1.5 seconds
FlutterNativeAlert.getInstance().showToast("I'm a Toast", duration: Duration(milliseconds: 1500));



4
likes
40
pub points
40%
popularity

Publisher

unverified uploader

flutter_native_alert offers the ability to display Android and iOS native dialog and toast

Homepage
Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_native_alert