Add padding to adjust top (#861)

* Add padding to adjust top * Update padding

Godwin Asuquo committed Apr 7, 2023 at 18:53 UTC 4fd8b722e97b5e3eb064fa55603cbc5cf87a80e2
2 files changed +2 -2
lib/src/screens/exchange/exchange_template_page.dart
+1 -1
@@ -132,7 +132,7 @@ class ExchangeTemplatePage extends BasePage {
132 begin: Alignment.topLeft,
133 end: Alignment.bottomRight),
134 ),
135 - padding: EdgeInsets.fromLTRB(24, 90, 24, 32),
135 + padding: EdgeInsets.fromLTRB(24, 100, 24, 32),
136 child: Observer(
137 builder: (_) => ExchangeCard(
138 amountFocusNode: _depositAmountFocus,
lib/src/screens/receive/anonpay_invoice_page.dart
+1 -1
@@ -99,7 +99,7 @@ class AnonPayInvoicePage extends BasePage {
99 ),
100 child: Observer(builder: (_) {
101 return Padding(
102 - padding: EdgeInsets.fromLTRB(24, 100, 24, 0),
102 + padding: EdgeInsets.fromLTRB(24, 120, 24, 0),
103 child: AnonInvoiceForm(
104 nameController: _nameController,
105 descriptionController: _descriptionController,