home screen new ui

This commit is contained in:
jayesh
2024-05-14 18:47:05 +05:30
parent 0df7b147a4
commit d0f027204f
11 changed files with 619 additions and 463 deletions

View File

@@ -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'),
);