From 8a70e9def4ea220ef0c824cd2e17a9b50564dad2 Mon Sep 17 00:00:00 2001 From: sneurlax Date: Tue, 24 Jan 2023 11:01:01 -0600 Subject: [PATCH] align desktop elements --- lib/pages/buy_view/buy_form.dart | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/pages/buy_view/buy_form.dart b/lib/pages/buy_view/buy_form.dart index cb4a05b3e..d3f5ab4d5 100644 --- a/lib/pages/buy_view/buy_form.dart +++ b/lib/pages/buy_view/buy_form.dart @@ -661,7 +661,8 @@ class _BuyFormState extends ConsumerState { .extension()! .textFieldDefaultBG, child: Padding( - padding: const EdgeInsets.all(12), + padding: const EdgeInsets.only( + left: 16.0, top: 12.0, right: 12.0, bottom: 12.0), child: Row( children: [ Text( @@ -687,7 +688,7 @@ class _BuyFormState extends ConsumerState { // width: 18, // ), const SizedBox( - width: 10, + width: 15, ), Expanded( child: Text( @@ -789,6 +790,7 @@ class _BuyFormState extends ConsumerState { child: Padding( padding: const EdgeInsets.all(12), child: Row(children: [ + const SizedBox(width: 10), // maybe make isDesktop-aware? buyWithFiat ? Text( format.simpleCurrencySymbol( @@ -807,7 +809,7 @@ class _BuyFormState extends ConsumerState { ) : getIconForTicker(selectedCrypto?.ticker ?? "BTC") as Widget, - const SizedBox(width: 10), // maybe make isDesktop-aware? + const SizedBox(width: 15), // maybe make isDesktop-aware? Text( buyWithFiat ? selectedFiat?.ticker ?? "ERR"