Browse Source

push 08112025

master
andrymodeste 4 weeks ago
parent
commit
8733d4c766
  1. 3
      lib/pages/facture_screen.dart

3
lib/pages/facture_screen.dart

@ -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);
}
});
}

Loading…
Cancel
Save