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
Oleksandr Sobol committed
Mar 3, 2020 at 16:26 UTC
f0d55fed94ad4ab30367619b306afd2c1d7c0c2a
2 files changed
+4
-1
lib/src/screens/dashboard/dashboard_page.dart
+1
-1
@@ -321,7 +321,7 @@ class DashboardPageBodyState extends State<DashboardPageBody> {
321
),
322
Padding(
323
padding: const EdgeInsets.only(
324
- left: 35, right: 35, bottom: 30),
324
+ left: 20, right: 20, bottom: 30),
325
child: Container(
326
child: Row(
327
mainAxisAlignment:
lib/src/screens/settings/settings.dart
+3
@@ -93,6 +93,7 @@ class SettingsFormState extends State<SettingsForm> {
93
widget: Observer(
94
builder: (_) => Text(
95
settingsStore.balanceDisplayMode.toString(),
96
+ textAlign: TextAlign.right,
97
style: TextStyle(
98
fontSize: 16.0,
99
color:
@@ -105,6 +106,7 @@ class SettingsFormState extends State<SettingsForm> {
106
widget: Observer(
107
builder: (_) => Text(
108
settingsStore.fiatCurrency.toString(),
109
+ textAlign: TextAlign.right,
110
style: TextStyle(
111
fontSize: 16.0,
112
color:
@@ -117,6 +119,7 @@ class SettingsFormState extends State<SettingsForm> {
119
widget: Observer(
120
builder: (_) => Text(
121
settingsStore.transactionPriority.toString(),
122
+ textAlign: TextAlign.right,
123
style: TextStyle(
124
fontSize: 16.0,
125
color: