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