api integration about us, privacy, terms and condition and faq api pending

This commit is contained in:
jayesh
2024-04-01 16:44:55 +05:30
35 changed files with 1181 additions and 87 deletions

View File

@@ -285,6 +285,18 @@ Widget text14W500(String text) {
);
}
Widget text14W500Overflow(String text) {
return Text(
text,
style: TextStyle(
fontSize: 14.sp,
color: Colors.white,
fontWeight: FontWeight.w500,
overflow: TextOverflow.ellipsis,
fontFamily: 'manrope'),
);
}
Widget text16W400_DADADA(String text) {
return Text(
text,
@@ -339,3 +351,14 @@ Widget text14W500_black(String text) {
fontFamily: 'manrope'),
);
}
Widget text10W300(String text) {
return Text(
text,
style: TextStyle(
fontSize: 10.sp,
color: Colors.white,
fontWeight: FontWeight.w300,
fontFamily: 'manrope'),
);
}