Add padding to adjust top (#861)

* Add padding to adjust top

* Update padding
This commit is contained in:
Godwin Asuquo 2023-04-07 18:53:01 +03:00 committed by GitHub
parent 0288d1fda2
commit 4fd8b722e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -132,7 +132,7 @@ class ExchangeTemplatePage extends BasePage {
begin: Alignment.topLeft,
end: Alignment.bottomRight),
),
padding: EdgeInsets.fromLTRB(24, 90, 24, 32),
padding: EdgeInsets.fromLTRB(24, 100, 24, 32),
child: Observer(
builder: (_) => ExchangeCard(
amountFocusNode: _depositAmountFocus,

View file

@ -99,7 +99,7 @@ class AnonPayInvoicePage extends BasePage {
),
child: Observer(builder: (_) {
return Padding(
padding: EdgeInsets.fromLTRB(24, 100, 24, 0),
padding: EdgeInsets.fromLTRB(24, 120, 24, 0),
child: AnonInvoiceForm(
nameController: _nameController,
descriptionController: _descriptionController,