deleted single payout that we will not use

This commit is contained in:
Arseni
2026-02-05 12:02:48 +03:00
parent e4fb270390
commit 69ed9f25cb
3 changed files with 1 additions and 129 deletions

View File

@@ -4,7 +4,6 @@ import 'package:pshared/models/payment/type.dart';
import 'package:pshared/models/recipient/recipient.dart';
import 'package:pweb/pages/dashboard/payouts/single/address_book/widget.dart';
import 'package:pweb/pages/dashboard/payouts/single/new_recipient/payout.dart';
class SinglePayoutForm extends StatelessWidget {
@@ -17,18 +16,13 @@ class SinglePayoutForm extends StatelessWidget {
required this.onGoToPayment,
});
static const double _spacingBetweenAddressAndForm = 20.0;
static const double _bottomSpacing = 40.0;
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
AddressBookPayout(onSelected: onRecipientSelected),
const SizedBox(height: _spacingBetweenAddressAndForm),
SinglePayout(onGoToPayment: onGoToPayment),
const SizedBox(height: _bottomSpacing),
//TODO Add history of recent wallets/payments
],
);
}