flutter_native_alert

Last updated:

0 purchases

flutter_native_alert Image
flutter_native_alert Images
Add to Cart

Description:

flutter native alert

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
copied to clipboard
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();
copied to clipboard


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));
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.