mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
CWA-177 | added text alignment to balance display mode, fiat currency and transaction priority in the settings page, changed padding for buttons in the dashboard page
This commit is contained in:
parent
d3b3f079c6
commit
f0d55fed94
2 changed files with 4 additions and 1 deletions
|
@ -321,7 +321,7 @@ class DashboardPageBodyState extends State<DashboardPageBody> {
|
|||
),
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(
|
||||
left: 35, right: 35, bottom: 30),
|
||||
left: 20, right: 20, bottom: 30),
|
||||
child: Container(
|
||||
child: Row(
|
||||
mainAxisAlignment:
|
||||
|
|
|
@ -93,6 +93,7 @@ class SettingsFormState extends State<SettingsForm> {
|
|||
widget: Observer(
|
||||
builder: (_) => Text(
|
||||
settingsStore.balanceDisplayMode.toString(),
|
||||
textAlign: TextAlign.right,
|
||||
style: TextStyle(
|
||||
fontSize: 16.0,
|
||||
color:
|
||||
|
@ -105,6 +106,7 @@ class SettingsFormState extends State<SettingsForm> {
|
|||
widget: Observer(
|
||||
builder: (_) => Text(
|
||||
settingsStore.fiatCurrency.toString(),
|
||||
textAlign: TextAlign.right,
|
||||
style: TextStyle(
|
||||
fontSize: 16.0,
|
||||
color:
|
||||
|
@ -117,6 +119,7 @@ class SettingsFormState extends State<SettingsForm> {
|
|||
widget: Observer(
|
||||
builder: (_) => Text(
|
||||
settingsStore.transactionPriority.toString(),
|
||||
textAlign: TextAlign.right,
|
||||
style: TextStyle(
|
||||
fontSize: 16.0,
|
||||
color:
|
||||
|
|
Loading…
Reference in a new issue