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(
|
||||||
padding: const EdgeInsets.only(
|
padding: const EdgeInsets.only(
|
||||||
left: 35, right: 35, bottom: 30),
|
left: 20, right: 20, bottom: 30),
|
||||||
child: Container(
|
child: Container(
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisAlignment:
|
mainAxisAlignment:
|
||||||
|
|
|
@ -93,6 +93,7 @@ class SettingsFormState extends State<SettingsForm> {
|
||||||
widget: Observer(
|
widget: Observer(
|
||||||
builder: (_) => Text(
|
builder: (_) => Text(
|
||||||
settingsStore.balanceDisplayMode.toString(),
|
settingsStore.balanceDisplayMode.toString(),
|
||||||
|
textAlign: TextAlign.right,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 16.0,
|
fontSize: 16.0,
|
||||||
color:
|
color:
|
||||||
|
@ -105,6 +106,7 @@ class SettingsFormState extends State<SettingsForm> {
|
||||||
widget: Observer(
|
widget: Observer(
|
||||||
builder: (_) => Text(
|
builder: (_) => Text(
|
||||||
settingsStore.fiatCurrency.toString(),
|
settingsStore.fiatCurrency.toString(),
|
||||||
|
textAlign: TextAlign.right,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 16.0,
|
fontSize: 16.0,
|
||||||
color:
|
color:
|
||||||
|
@ -117,6 +119,7 @@ class SettingsFormState extends State<SettingsForm> {
|
||||||
widget: Observer(
|
widget: Observer(
|
||||||
builder: (_) => Text(
|
builder: (_) => Text(
|
||||||
settingsStore.transactionPriority.toString(),
|
settingsStore.transactionPriority.toString(),
|
||||||
|
textAlign: TextAlign.right,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 16.0,
|
fontSize: 16.0,
|
||||||
color:
|
color:
|
||||||
|
|
Loading…
Reference in a new issue