CAKE-39 | fixed colors of account list button

OleksandrSobol committed Sep 10, 2020 at 16:47 UTC 4feee0066b257ae8d7b7c9ce0bfd66a8412b8e71
2 files changed +3 -1
lib/src/screens/monero_accounts/monero_account_list_page.dart
+1 -1
@@ -123,7 +123,7 @@ class MoneroAccountListPage extends StatelessWidget {
123 .pushNamed(Routes.accountCreation),
124 child: Container(
125 height: 62,
126 - color: Theme.of(context).textTheme.subtitle.decorationColor,
126 + color: Theme.of(context).cardColor,
127 padding: EdgeInsets.only(left: 24, right: 24),
128 child: Center(
129 child: Row(
lib/themes.dart
+2
@@ -174,6 +174,7 @@ class Themes {
174 decorationColor: Palette.brightOrange // alert left button
175 ),
176 ),
177 + cardColor: Palette.moderateSlateBlue // bottom button (action list)
178 );
179
180
@@ -346,5 +347,6 @@ class Themes {
347 decorationColor: Palette.alizarinRed // alert left button
348 ),
349 ),
350 + cardColor: PaletteDark.darkNightBlue // bottom button (action list)
351 );
352 }
\ No newline at end of file