mirror of https://github.com/mitchell/selfpass.git
Modify theme text style to match Cupertino defaults;
thicken tappable text list borders
This commit is contained in:
parent
6315d5a9bc
commit
4558dea528
|
@ -27,8 +27,12 @@ class Selfpass extends StatelessWidget {
|
||||||
textTheme: CupertinoTextThemeData(
|
textTheme: CupertinoTextThemeData(
|
||||||
brightness: Brightness.dark,
|
brightness: Brightness.dark,
|
||||||
textStyle: TextStyle(
|
textStyle: TextStyle(
|
||||||
fontSize: 16,
|
inherit: false,
|
||||||
|
fontFamily: '.SF Pro Text',
|
||||||
|
fontSize: 17.0,
|
||||||
|
letterSpacing: -0.41,
|
||||||
color: CupertinoColors.lightBackgroundGray,
|
color: CupertinoColors.lightBackgroundGray,
|
||||||
|
decoration: TextDecoration.none,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
scaffoldBackgroundColor: CupertinoColors.darkBackgroundGray,
|
scaffoldBackgroundColor: CupertinoColors.darkBackgroundGray,
|
||||||
|
|
|
@ -24,6 +24,7 @@ class TappableTextList extends StatelessWidget {
|
||||||
border: Border(
|
border: Border(
|
||||||
bottom: BorderSide(
|
bottom: BorderSide(
|
||||||
color: Color(0xFF1e1d1e),
|
color: Color(0xFF1e1d1e),
|
||||||
|
width: 2,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue