push 08112025

This commit is contained in:
andrymodeste 2025-11-08 18:39:36 +01:00
parent 0b04aea9e4
commit 8733d4c766

View File

@ -27,6 +27,7 @@ class FactureScreen extends StatefulWidget {
}
class _FactureScreenState extends State<FactureScreen> {
bool isPrinting = false;
String get paymentMethodText {
switch (widget.paymentMethod) {
case 'mvola':
@ -423,7 +424,7 @@ class _FactureScreenState extends State<FactureScreen> {
Future.delayed(const Duration(seconds: 3), () {
if (mounted) {
Navigator.of(context).popUntil((route) => route.isFirst);
Navigator.pop(context);
}
});
}