multiple payout page and small fixes

This commit is contained in:
Arseni
2026-02-11 02:48:30 +03:00
parent 66989ea36c
commit edb43f9909
77 changed files with 2120 additions and 1289 deletions

View File

@@ -0,0 +1 @@
enum DashboardPayoutMode { single, multiple }

View File

@@ -0,0 +1,13 @@
class PaymentSummaryValues {
final String sentAmount;
final String fee;
final String recipientReceives;
final String total;
const PaymentSummaryValues({
required this.sentAmount,
required this.fee,
required this.recipientReceives,
required this.total,
});
}