showDialogWeebi static method
Implementation
static void showDialogWeebi(String message, BuildContext context) {
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text(message),
actions: <Widget>[
TextButton(
child: const Text("Fermer"),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
}