shirne_dialog 1.2.1 shirne_dialog: ^1.2.1 copied to clipboard
A alert package to use alert and toast within one line code.
dialog #
A package for flutter to use alert and toast within one line code.
usage #
MyDialog.of(context).toast('tip message');
MyDialog.of(context).alert(Text('alert message'));
MyDialog.of(context).confirm(Text('alert message')).then((v){
});
MyDialog.of(context).popup(Text('popup contents'));
MyDialog.of(context).snack('tip');