native_dialog_plus

Creator: coderz1093

Last updated:

Add to Cart

Description:

native dialog plus

A flutter minimalistic plugin to show native Dialogs!!
Description #
Android
Native Dialog Plus uses the native UI on each platform to show alert and confirm dialogs.
IMPORTANT
Due to framework limitations Android is limited to the maximum of 3 actions one of each NativeDialogPlusActionStyle style
therefore its limited to one defaultStyle, cancel and destructive each, the order of the actions in the list does not change the position in the dialog.
IOS
iOS has no limit on the number of actions.
Buttons are disabled if no callback is passed on onPressed.
Usage #
Alert dialog #
import 'package:native_dialog_plus/native_dialog_plus.dart';

NativeDialogPlus(
actions: [
NativeDialogPlusAction(
text: 'Now',
style: NativeDialogPlusActionStyle.destructive,
),
NativeDialogPlusAction(
text: "BZ'H",
onPressed: () {
print("Moshiach vibes");
},
style: NativeDialogPlusActionStyle.defaultStyle,
),
],
title: 'This is a test dialog',
message: 'Moshiach NOW',
).show();
copied to clipboard
Android

iOS

Web

License

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

Files:

Customer Reviews

There are no reviews.