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:
Oleksandr Sobol 2020-03-03 16:26:12 +02:00
parent d3b3f079c6
commit f0d55fed94
2 changed files with 4 additions and 1 deletions

View file

@ -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:

View file

@ -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: