Modify theme text style to match Cupertino defaults;

thicken tappable text list borders
This commit is contained in:
Mitchell Simon 2019-09-01 18:34:35 -04:00
parent 6315d5a9bc
commit 4558dea528
2 changed files with 6 additions and 1 deletions

View File

@ -27,8 +27,12 @@ class Selfpass extends StatelessWidget {
textTheme: CupertinoTextThemeData(
brightness: Brightness.dark,
textStyle: TextStyle(
fontSize: 16,
inherit: false,
fontFamily: '.SF Pro Text',
fontSize: 17.0,
letterSpacing: -0.41,
color: CupertinoColors.lightBackgroundGray,
decoration: TextDecoration.none,
),
),
scaffoldBackgroundColor: CupertinoColors.darkBackgroundGray,

View File

@ -24,6 +24,7 @@ class TappableTextList extends StatelessWidget {
border: Border(
bottom: BorderSide(
color: Color(0xFF1e1d1e),
width: 2,
),
),
),