Revert "wrap send view content in padding"

This reverts commit 2aa3bebf78.
This commit is contained in:
sneurlax 2024-03-11 23:05:55 -05:00
parent 10233550b1
commit 181ec5e539

View file

@ -391,11 +391,6 @@ class _FrostSendViewState extends ConsumerState<FrostSendView> {
const SizedBox(
height: 16,
),
Padding(
padding: const EdgeInsets.symmetric(
horizontal: 20,
),
child: Column(children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
@ -486,8 +481,7 @@ class _FrostSendViewState extends ConsumerState<FrostSendView> {
Amount? amount;
final result =
await Navigator.of(context).pushNamed(
final result = await Navigator.of(context).pushNamed(
CoinControlView.routeName,
arguments: Tuple4(
walletId,
@ -599,8 +593,6 @@ class _FrostSendViewState extends ConsumerState<FrostSendView> {
const SizedBox(
height: 16,
),
]),
),
],
),
);