WIP themes: fix sudhead style

This commit is contained in:
Yegor Vialov 2020-04-04 13:27:23 +00:00
parent 5b2a1163b9
commit 36eff26862
2 changed files with 5 additions and 3 deletions

View File

@ -30,7 +30,9 @@ class FlatServiceButton extends StatelessWidget {
child: Text( child: Text(
text, text,
textAlign: TextAlign.right, textAlign: TextAlign.right,
style: Theme.of(context).textTheme.subhead, style: Theme.of(context).textTheme.subhead.copyWith(
color: Colors.blue
),
), ),
) )
); );

View File

@ -41,8 +41,8 @@ class LockStateWidget extends StatelessWidget {
child: Text("LOCK", child: Text("LOCK",
textAlign: TextAlign.right, textAlign: TextAlign.right,
style: Theme.of(context).textTheme.subhead.copyWith( style: Theme.of(context).textTheme.subhead.copyWith(
color: Colors.blue color: Colors.blue
), ),
), ),
) )
) )