quote requests are paused while the payout amount is being edited

This commit is contained in:
Arseni
2025-12-30 19:08:53 +03:00
parent c3ec50c8e4
commit d9a605ce21
3 changed files with 36 additions and 4 deletions

View File

@@ -4,9 +4,11 @@ import 'package:flutter/material.dart';
class PaymentAmountProvider with ChangeNotifier {
double _amount = 10.0;
bool _payerCoversFee = true;
bool _isEditing = false;
double get amount => _amount;
bool get payerCoversFee => _payerCoversFee;
bool get isEditing => _isEditing;
void setAmount(double value) {
_amount = value;
@@ -17,4 +19,10 @@ class PaymentAmountProvider with ChangeNotifier {
_payerCoversFee = value;
notifyListeners();
}
void setEditing(bool value) {
if (_isEditing == value) return;
_isEditing = value;
notifyListeners();
}
}