feat: made the ongoing screen... for now

This commit is contained in:
alzalia1 2025-08-14 11:19:06 +02:00
parent 099b20f805
commit e5a8745e0e
5 changed files with 119 additions and 2 deletions

View file

@ -38,7 +38,36 @@ class BalPendingScreen extends StatelessWidget {
);
}
: () {
viewModel.startBal(viewModel.bal!.id);
showDialog(
context: context,
builder: (context) {
return AlertDialog(
title: Text(
"Êtes-vous sûr·e de vouloir débuter cette BAL ?",
),
content: Text(
"Cette action est irréversible. Vous pourrez ensuite intéragir avec la BAL, mais pas la remettre en mode \"À venir\"",
),
actions: [
TextButton(
onPressed: () {
Navigator.of(context).pop();
},
child: Text("Annuler"),
),
TextButton(
onPressed: () async {
await viewModel.startBal(viewModel.bal!.id);
if (context.mounted) {
Navigator.of(context).pop();
}
},
child: Text("Valider"),
),
],
);
},
);
},
child: Text("Démarrer cette BAL"),
),