mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-12 09:32:33 +00:00
restore-button-fix | added padding to the title
This commit is contained in:
parent
4890143b4e
commit
c233d380ab
1 changed files with 10 additions and 7 deletions
|
@ -58,13 +58,16 @@ class RestoreButton extends StatelessWidget {
|
|||
),
|
||||
Column(
|
||||
children: <Widget>[
|
||||
AutoSizeText(
|
||||
title,
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
color: titleColor,
|
||||
fontWeight: FontWeight.bold),
|
||||
maxLines: 1,
|
||||
Padding(
|
||||
padding: EdgeInsets.only(left: 20, right: 20),
|
||||
child: AutoSizeText(
|
||||
title,
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
color: titleColor,
|
||||
fontWeight: FontWeight.bold),
|
||||
maxLines: 1,
|
||||
),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.only(left: 20, right: 20, top: 10),
|
||||
|
|
Loading…
Reference in a new issue