fix font size

This commit is contained in:
2020-06-01 08:12:04 +06:30
parent 06b5881858
commit cb88e7b65c
3 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ TextStyle newLabelStyle(
FontWeight fontWeight,
bool underline = false}) {
return TextStyle(
fontSize: fontSize == null ? 13 : fontSize,
fontSize: fontSize == null ? 14 : fontSize,
color: color == null ? secondaryColor : color,
fontWeight: fontWeight == null ? FontWeight.w500 : fontWeight,
decoration: underline ? TextDecoration.underline : TextDecoration.none);
@@ -58,7 +58,7 @@ const TextStyle photoLabelStyle =
const TextStyle photoLabelStyleMM = TextStyle(
color: Colors.black, fontSize: 13.0, fontFamily: "MyanmarUnicode");
const TextStyle textStyle =
TextStyle(fontSize: 18, color: Colors.black87, fontWeight: FontWeight.w500);
TextStyle(fontSize: 14, color: Colors.black87, fontWeight: FontWeight.w500);
const TextStyle textStyleOdd = TextStyle(
fontSize: 15, color: Colors.blueAccent, fontWeight: FontWeight.w500);
const TextStyle textStrikeStyle = TextStyle(