gnums_dialog_mixin 0.0.1
gnums_dialog_mixin: ^0.0.1 copied to clipboard
A flutter pub for dialogs
class DialogExample extends StatelessWidget with DialogMixin {
@override
Widget build(BuildContext context) {
return Scaffold(
body: ElevatedButton(
onPressed: () {
showAlertDialog(
context,
"Delete",
"Are you sure want to delete ?",
"yes",
"no",
(val) {});
},
child: Text("Delete"),
),
);
}
}