invest screen ui

This commit is contained in:
jayesh
2024-06-10 18:49:10 +05:30
parent 0b99cde575
commit dd5181af94
27 changed files with 1119 additions and 18 deletions

View File

@@ -20,6 +20,14 @@ class TextWidget {
color: clr ?? AppColor.plainWhite));
}
Widget text11W700(String text, {Color? clr}) {
return Text(text,
style: GoogleFonts.dmSans(
fontSize: 11,
fontWeight: FontWeight.w700,
color: clr ?? AppColor.plainWhite));
}
//Text Size 12
Widget text12W400(String text, {Color? clr}) {
return Text(text,
@@ -213,6 +221,14 @@ class TextWidget {
}
//Text Size 22
Widget text22W400(String text, {Color? clr}) {
return Text(text,
style: GoogleFonts.dmSans(
fontSize: 22,
fontWeight: FontWeight.w400,
color: clr ?? AppColor.plainWhite));
}
Widget text22W700(String text, {Color? clr}) {
return Text(text,
style: GoogleFonts.dmSans(