home screen new ui
This commit is contained in:
@@ -230,6 +230,17 @@ Widget text22W600(String text) {
|
||||
);
|
||||
}
|
||||
|
||||
Widget text20W600(String text) {
|
||||
return Text(
|
||||
text,
|
||||
style: TextStyle(
|
||||
fontSize: 20.sp,
|
||||
color: Colors.white,
|
||||
fontWeight: FontWeight.w600,
|
||||
fontFamily: 'hiragino'),
|
||||
);
|
||||
}
|
||||
|
||||
Widget text22W600manrope(String text) {
|
||||
return Text(
|
||||
text,
|
||||
@@ -252,6 +263,17 @@ Widget text25W600(String text) {
|
||||
);
|
||||
}
|
||||
|
||||
Widget text25W800(String text) {
|
||||
return Text(
|
||||
text,
|
||||
style: TextStyle(
|
||||
fontSize: 25.sp,
|
||||
color: Colors.white,
|
||||
fontWeight: FontWeight.w800,
|
||||
fontFamily: 'hiragino'),
|
||||
);
|
||||
}
|
||||
|
||||
Widget text22W500(String text) {
|
||||
return Text(
|
||||
text,
|
||||
@@ -296,12 +318,12 @@ Widget text14W400(String text) {
|
||||
);
|
||||
}
|
||||
|
||||
Widget text14W500(String text) {
|
||||
Widget text14W500(String text, {Color? clr}) {
|
||||
return Text(
|
||||
text,
|
||||
style: TextStyle(
|
||||
fontSize: 14.sp,
|
||||
color: Colors.white,
|
||||
color: clr ?? Colors.white,
|
||||
fontWeight: FontWeight.w500,
|
||||
fontFamily: 'hiragino'),
|
||||
);
|
||||
@@ -335,7 +357,7 @@ Widget text14W400_979797(String text) {
|
||||
text,
|
||||
style: TextStyle(
|
||||
fontSize: 14.sp,
|
||||
color: Color(0xFF979797),
|
||||
color: Color(0xFFE9E9E9),
|
||||
fontWeight: FontWeight.w400,
|
||||
fontFamily: 'hiragino'),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user