Skip to content

didiabel/native_dialog_plus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 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();

Android

android-alert

iOS

ios-alert

Web

web-alert

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 7