redesign | fixed font of the middle text (navigation bar, base page), monero account list page and account tile

OleksandrSobol committed Sep 14, 2020 at 20:46 UTC 586d75cfd1e7f8eb5719e3d95d3c0f62cab5a1ce
3 files changed +4
lib/src/screens/base_page.dart
+1
@@ -73,6 +73,7 @@ abstract class BasePage extends StatelessWidget {
73 style: TextStyle(
74 fontSize: 18.0,
75 fontWeight: FontWeight.bold,
76 + fontFamily: 'Poppins',
77 color: titleColor ??
78 Theme.of(context).primaryTextTheme.title.color),
79 );
lib/src/screens/monero_accounts/monero_account_list_page.dart
+2
@@ -53,6 +53,7 @@ class MoneroAccountListPage extends StatelessWidget {
53 style: TextStyle(
54 fontSize: 18,
55 fontWeight: FontWeight.bold,
56 + fontFamily: 'Poppins',
57 decoration: TextDecoration.none,
58 color: Colors.white
59 ),
@@ -140,6 +141,7 @@ class MoneroAccountListPage extends StatelessWidget {
141 style: TextStyle(
142 fontSize: 15,
143 fontWeight: FontWeight.w600,
144 + fontFamily: 'Poppins',
145 color: Colors.white,
146 decoration: TextDecoration.none,
147 ),
lib/src/screens/monero_accounts/widgets/account_tile.dart
+1
@@ -32,6 +32,7 @@ class AccountTile extends StatelessWidget {
32 style: TextStyle(
33 fontSize: 18,
34 fontWeight: FontWeight.bold,
35 + fontFamily: 'Poppins',
36 color: textColor,
37 decoration: TextDecoration.none,
38 ),