Commits (2)
  • Sai Srinivas's avatar
    Responsive and ui correction · 558ac0d8
    Sai Srinivas authored
    558ac0d8
  • Sai Srinivas's avatar
    Merge remote-tracking branch 'origin/main' · e6241d05
    Sai Srinivas authored
    # Conflicts:
    #	lib/Screens/BillScreens/BillDetailScreen.dart
    #	lib/Screens/DashboardScreen.dart
    #	lib/Screens/HelpScreens/OrderHelpScreen.dart
    #	lib/Screens/ProductsDetailScreen.dart
    #	lib/Screens/ProfileScreen.dart
    #	lib/Screens/TransactionScreens/BillStatusToast.dart
    #	lib/Screens/authScreen/LoginScreen.dart
    #	lib/Screens/authScreen/OTP_Screen.dart
    e6241d05
...@@ -32,7 +32,7 @@ android { ...@@ -32,7 +32,7 @@ android {
applicationId = "in.webgrid.genrentals" applicationId = "in.webgrid.genrentals"
// You can update the following values to match your application needs. // You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config. // For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = 23 minSdk = flutter.minSdkVersion
targetSdk = 36 targetSdk = 36
versionCode = flutter.versionCode versionCode = flutter.versionCode
versionName = flutter.versionName versionName = flutter.versionName
......
...@@ -111,8 +111,8 @@ class _BillDetailScreenState extends State<BillDetailScreen> { ...@@ -111,8 +111,8 @@ class _BillDetailScreenState extends State<BillDetailScreen> {
"Bill Details", "Bill Details",
style: TextStyle( style: TextStyle(
fontSize: getResponsiveTextSize(context, 16), fontSize: getResponsiveTextSize(context, 16),
fontFamily: "Plus Jakarta Sans", fontFamily: "Poppins",
fontWeight: FontWeight.w600, fontWeight: FontWeight.w500,
color: Colors.black87, color: Colors.black87,
), ),
), ),
...@@ -276,7 +276,7 @@ class _BillDetailScreenState extends State<BillDetailScreen> { ...@@ -276,7 +276,7 @@ class _BillDetailScreenState extends State<BillDetailScreen> {
"Pay Now", "Pay Now",
style: TextStyle( style: TextStyle(
fontSize: getResponsiveTextSize(context, 14), fontSize: getResponsiveTextSize(context, 14),
fontFamily: "Plus Jakarta Sans", fontFamily: "Poppins",
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
), ),
), ),
...@@ -537,6 +537,7 @@ class _BillDetailScreenState extends State<BillDetailScreen> { ...@@ -537,6 +537,7 @@ class _BillDetailScreenState extends State<BillDetailScreen> {
title, title,
maxLines: 2, maxLines: 2,
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
fontSize: getResponsiveTextSize(context, 14), fontSize: getResponsiveTextSize(context, 14),
color: AppColors.subtitleText, color: AppColors.subtitleText,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
...@@ -546,6 +547,7 @@ class _BillDetailScreenState extends State<BillDetailScreen> { ...@@ -546,6 +547,7 @@ class _BillDetailScreenState extends State<BillDetailScreen> {
Text( Text(
value, value,
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
fontSize: getResponsiveTextSize(context, 14), fontSize: getResponsiveTextSize(context, 14),
fontWeight: isBold ? FontWeight.w700 : FontWeight.w400, fontWeight: isBold ? FontWeight.w700 : FontWeight.w400,
color: highlight color: highlight
......
This diff is collapsed.
...@@ -54,6 +54,7 @@ class _EnquiryScreenState extends State<EnquiryScreen> { ...@@ -54,6 +54,7 @@ class _EnquiryScreenState extends State<EnquiryScreen> {
"Enquiry", "Enquiry",
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 16,
fontFamily: "Poppins",
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
color: Colors.black87, color: Colors.black87,
...@@ -205,6 +206,7 @@ class _EnquiryScreenState extends State<EnquiryScreen> { ...@@ -205,6 +206,7 @@ class _EnquiryScreenState extends State<EnquiryScreen> {
: const Text( : const Text(
"Submit", "Submit",
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
fontSize: 15, fontSize: 15,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
), ),
...@@ -225,6 +227,7 @@ class _EnquiryScreenState extends State<EnquiryScreen> { ...@@ -225,6 +227,7 @@ class _EnquiryScreenState extends State<EnquiryScreen> {
title, title,
style: const TextStyle( style: const TextStyle(
fontSize: 14, fontSize: 14,
fontFamily: "Poppins",
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
color: Colors.black, color: Colors.black,
...@@ -267,10 +270,17 @@ class _EnquiryScreenState extends State<EnquiryScreen> { ...@@ -267,10 +270,17 @@ class _EnquiryScreenState extends State<EnquiryScreen> {
keyboardType: keyboardType, keyboardType: keyboardType,
maxLines: maxLines, maxLines: maxLines,
onChanged: (_) => field.didChange(controller.text), onChanged: (_) => field.didChange(controller.text),
style: TextStyle(
fontSize: 14,
fontFamily: "Poppins",
color: Colors.black,
fontWeight: FontWeight.w400,
),
decoration: InputDecoration( decoration: InputDecoration(
hintText: hint, hintText: hint,
hintStyle: TextStyle( hintStyle: TextStyle(
fontSize: 14, fontSize: 14,
fontFamily: "Poppins",
color: Colors.grey[400], color: Colors.grey[400],
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
...@@ -287,6 +297,7 @@ class _EnquiryScreenState extends State<EnquiryScreen> { ...@@ -287,6 +297,7 @@ class _EnquiryScreenState extends State<EnquiryScreen> {
child: Text( child: Text(
field.errorText ?? '', field.errorText ?? '',
style: const TextStyle( style: const TextStyle(
fontFamily: "Poppins",
color: Colors.red, color: Colors.red,
fontSize: 12, fontSize: 12,
), ),
......
...@@ -368,6 +368,7 @@ class CommonListItem extends StatelessWidget { ...@@ -368,6 +368,7 @@ class CommonListItem extends StatelessWidget {
"#${orderId}", "#${orderId}",
style: TextStyle( style: TextStyle(
fontSize: 12, fontSize: 12,
fontFamily: "Poppins",
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
color: AppColors.subtitleText, color: AppColors.subtitleText,
...@@ -377,6 +378,7 @@ class CommonListItem extends StatelessWidget { ...@@ -377,6 +378,7 @@ class CommonListItem extends StatelessWidget {
title, title,
style: TextStyle( style: TextStyle(
fontSize: 14, fontSize: 14,
fontFamily: "Poppins",
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
color: Colors.black87, color: Colors.black87,
...@@ -408,6 +410,7 @@ class CommonListItem extends StatelessWidget { ...@@ -408,6 +410,7 @@ class CommonListItem extends StatelessWidget {
status, status,
style: TextStyle( style: TextStyle(
fontSize: 12, fontSize: 12,
fontFamily: "Poppins",
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
color: Colors.black87, color: Colors.black87,
......
...@@ -93,6 +93,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> { ...@@ -93,6 +93,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> {
child: Text( child: Text(
widget.status, widget.status,
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
fontSize: 12, fontSize: 12,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
color: status ? Colors.black87 : Colors.red, color: status ? Colors.black87 : Colors.red,
...@@ -155,6 +156,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> { ...@@ -155,6 +156,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> {
child: const Text( child: const Text(
"Send a Message", "Send a Message",
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
fontSize: 14, fontSize: 14,
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
...@@ -230,6 +232,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> { ...@@ -230,6 +232,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> {
name, name,
style: const TextStyle( style: const TextStyle(
fontSize: 16, fontSize: 16,
fontFamily: "Poppins",
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
color: Colors.black87, color: Colors.black87,
), ),
...@@ -239,6 +242,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> { ...@@ -239,6 +242,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> {
date, date,
style: TextStyle( style: TextStyle(
fontSize: 12, fontSize: 12,
fontFamily: "Poppins",
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
color: Colors.grey[600], color: Colors.grey[600],
...@@ -314,6 +318,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> { ...@@ -314,6 +318,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> {
message, message,
style: const TextStyle( style: const TextStyle(
fontSize: 14, fontSize: 14,
fontFamily: "Poppins",
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
color: Colors.black87, color: Colors.black87,
...@@ -411,6 +416,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> { ...@@ -411,6 +416,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> {
hintText: "Write your message", hintText: "Write your message",
hintStyle: TextStyle( hintStyle: TextStyle(
fontSize: 14, fontSize: 14,
fontFamily: "Poppins",
color: Colors.grey[400], color: Colors.grey[400],
fontWeight: FontWeight.w400 fontWeight: FontWeight.w400
), ),
...@@ -628,6 +634,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> { ...@@ -628,6 +634,7 @@ class _TicketChatScreenState extends State<TicketChatScreen> {
"Send Message", "Send Message",
style: TextStyle( style: TextStyle(
fontSize: 14, fontSize: 14,
fontFamily: "Poppins",
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
), ),
......
...@@ -807,6 +807,7 @@ class _ProductsDetailScreenState extends State<ProductsDetailScreen> { ...@@ -807,6 +807,7 @@ class _ProductsDetailScreenState extends State<ProductsDetailScreen> {
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: TextStyle( style: TextStyle(
color: AppColors.nearDarkText, color: AppColors.nearDarkText,
fontFamily: "Poppins",
fontSize: isSmallScreen ? 11 : 13, // Slightly smaller font fontSize: isSmallScreen ? 11 : 13, // Slightly smaller font
fontStyle: FontStyle.normal, fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
......
...@@ -84,7 +84,7 @@ class _ProfileScreenState extends State<ProfileScreen> { ...@@ -84,7 +84,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
Text( Text(
"Logout", "Logout",
style: TextStyle( style: TextStyle(
fontFamily: "Plus Jakarta Sans", fontFamily: "Poppins",
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
fontSize: 20, fontSize: 20,
color: Colors.black87, color: Colors.black87,
...@@ -97,7 +97,7 @@ class _ProfileScreenState extends State<ProfileScreen> { ...@@ -97,7 +97,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
"Are you sure you want to logout?", "Are you sure you want to logout?",
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: TextStyle( style: TextStyle(
fontFamily: "Plus Jakarta Sans", fontFamily: "Poppins",
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
color: Colors.grey[600], color: Colors.grey[600],
...@@ -129,7 +129,7 @@ class _ProfileScreenState extends State<ProfileScreen> { ...@@ -129,7 +129,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
child: Text( child: Text(
"Cancel", "Cancel",
style: TextStyle( style: TextStyle(
fontFamily: "Plus Jakarta Sans", fontFamily: "Poppins",
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
fontSize: 14, fontSize: 14,
color: Colors.grey[700], color: Colors.grey[700],
...@@ -159,7 +159,7 @@ class _ProfileScreenState extends State<ProfileScreen> { ...@@ -159,7 +159,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
Text( Text(
"Logout", "Logout",
style: TextStyle( style: TextStyle(
fontFamily: "Plus Jakarta Sans", fontFamily: "Poppins",
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
fontSize: 14, fontSize: 14,
color: Colors.white, color: Colors.white,
...@@ -206,7 +206,7 @@ class _ProfileScreenState extends State<ProfileScreen> { ...@@ -206,7 +206,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
Text( Text(
"Logging out...", "Logging out...",
style: TextStyle( style: TextStyle(
fontFamily: "Plus Jakarta Sans", fontFamily: "Poppins",
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
fontSize: 16, fontSize: 16,
color: Colors.grey[800], color: Colors.grey[800],
...@@ -254,7 +254,7 @@ class _ProfileScreenState extends State<ProfileScreen> { ...@@ -254,7 +254,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
Text( Text(
"Logged out successfully", "Logged out successfully",
style: TextStyle( style: TextStyle(
fontFamily: "Plus Jakarta Sans", fontFamily: "Poppins",
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
), ),
), ),
...@@ -295,7 +295,7 @@ class _ProfileScreenState extends State<ProfileScreen> { ...@@ -295,7 +295,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
Text( Text(
"Logout failed. Please try again.", "Logout failed. Please try again.",
style: TextStyle( style: TextStyle(
fontFamily: "Plus Jakarta Sans", fontFamily: "Poppins",
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
), ),
), ),
...@@ -506,7 +506,7 @@ class _ProfileScreenState extends State<ProfileScreen> { ...@@ -506,7 +506,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
"Logout", "Logout",
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 16,
fontFamily: "Plus Jakarta Sans", fontFamily: "Poppins",
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: Colors.white, color: Colors.white,
), ),
...@@ -537,12 +537,12 @@ class _ProfileScreenState extends State<ProfileScreen> { ...@@ -537,12 +537,12 @@ class _ProfileScreenState extends State<ProfileScreen> {
const SizedBox(height: 6), const SizedBox(height: 6),
Text(title, Text(title,
style: const TextStyle( style: const TextStyle(
fontSize: 14, fontWeight: FontWeight.w400, fontFamily: "Plus Jakarta Sans", color: Colors.black87)), fontSize: 14, fontWeight: FontWeight.w400, fontFamily: "Poppins", color: Colors.black87)),
const SizedBox(height: 2), const SizedBox(height: 2),
Text(value, Text(value,
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: const TextStyle( style: const TextStyle(
fontSize: 14, fontWeight: FontWeight.w400, fontFamily: "Plus Jakarta Sans", color: Colors.black54)), fontSize: 14, fontWeight: FontWeight.w400, fontFamily: "Poppins", color: Colors.black54)),
], ],
); );
} }
...@@ -552,11 +552,11 @@ class _ProfileScreenState extends State<ProfileScreen> { ...@@ -552,11 +552,11 @@ class _ProfileScreenState extends State<ProfileScreen> {
children: [ children: [
Text(title, Text(title,
style: const TextStyle( style: const TextStyle(
fontSize: 14, fontWeight: FontWeight.w400, fontFamily: "Plus Jakarta Sans", color: Colors.black87)), fontSize: 14, fontWeight: FontWeight.w400, fontFamily: "Poppins", color: Colors.black87)),
const SizedBox(height: 4), const SizedBox(height: 4),
Text(value, Text(value,
style: const TextStyle( style: const TextStyle(
fontSize: 14, fontWeight: FontWeight.w400, fontFamily: "Plus Jakarta Sans", color: Colors.black54)), fontSize: 14, fontWeight: FontWeight.w400, fontFamily: "Poppins", color: Colors.black54)),
], ],
); );
} }
......
...@@ -247,10 +247,11 @@ class _BillStatusToastState extends State<BillStatusToast> { ...@@ -247,10 +247,11 @@ class _BillStatusToastState extends State<BillStatusToast> {
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
Expanded( Expanded(
flex: 5, flex: 4,
child: Text( child: Text(
title, title,
style: const TextStyle( maxLines: 2,
style: TextStyle(
fontSize: 14, fontSize: 14,
fontFamily: "Poppins", fontFamily: "Poppins",
color: Colors.black54, color: Colors.black54,
......
...@@ -135,6 +135,7 @@ class _LoginScreenState extends State<LoginScreen> { ...@@ -135,6 +135,7 @@ class _LoginScreenState extends State<LoginScreen> {
"Rental Power,\nManaged in a Tap", "Rental Power,\nManaged in a Tap",
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
color: Colors.white, color: Colors.white,
fontSize: 35, fontSize: 35,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
...@@ -151,6 +152,7 @@ class _LoginScreenState extends State<LoginScreen> { ...@@ -151,6 +152,7 @@ class _LoginScreenState extends State<LoginScreen> {
child: Text( child: Text(
"Enter Registered Mobile No.", "Enter Registered Mobile No.",
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
color: Colors.white, color: Colors.white,
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
...@@ -169,7 +171,7 @@ class _LoginScreenState extends State<LoginScreen> { ...@@ -169,7 +171,7 @@ class _LoginScreenState extends State<LoginScreen> {
style: const TextStyle(color: Colors.black), style: const TextStyle(color: Colors.black),
decoration: InputDecoration( decoration: InputDecoration(
hintText: "Enter Mobile No.", hintText: "Enter Mobile No.",
hintStyle: const TextStyle(color: Colors.grey), hintStyle: const TextStyle(color: Colors.grey,fontFamily: "Poppins",),
filled: true, filled: true,
fillColor: Colors.white, fillColor: Colors.white,
counterText: "", // Remove character counter counterText: "", // Remove character counter
...@@ -201,6 +203,7 @@ class _LoginScreenState extends State<LoginScreen> { ...@@ -201,6 +203,7 @@ class _LoginScreenState extends State<LoginScreen> {
child: Text( child: Text(
"*Invalid number. Enter your registered number.", "*Invalid number. Enter your registered number.",
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
color: Colors.redAccent, color: Colors.redAccent,
fontSize: 12, fontSize: 12,
), ),
...@@ -246,6 +249,7 @@ class _LoginScreenState extends State<LoginScreen> { ...@@ -246,6 +249,7 @@ class _LoginScreenState extends State<LoginScreen> {
Text( Text(
"Continue", "Continue",
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
color: _isValid color: _isValid
? const Color(0xFFFFFFFF) ? const Color(0xFFFFFFFF)
: const Color(0xFF03456C), : const Color(0xFF03456C),
......
...@@ -284,6 +284,7 @@ class _OtpScreenState extends State<OtpScreen> { ...@@ -284,6 +284,7 @@ class _OtpScreenState extends State<OtpScreen> {
"Rental Power,\nManaged in a Tap", "Rental Power,\nManaged in a Tap",
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
color: Colors.white, color: Colors.white,
fontSize: 32, fontSize: 32,
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
...@@ -298,6 +299,7 @@ class _OtpScreenState extends State<OtpScreen> { ...@@ -298,6 +299,7 @@ class _OtpScreenState extends State<OtpScreen> {
"Enter the OTP sent to +91 ${widget.mob}", "Enter the OTP sent to +91 ${widget.mob}",
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: const TextStyle( style: const TextStyle(
fontFamily: "Poppins",
color: Colors.white70, color: Colors.white70,
fontSize: 14, fontSize: 14,
), ),
...@@ -381,6 +383,7 @@ class _OtpScreenState extends State<OtpScreen> { ...@@ -381,6 +383,7 @@ class _OtpScreenState extends State<OtpScreen> {
Text( Text(
"Continue", "Continue",
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
color: _isValid color: _isValid
? Colors.white ? Colors.white
: const Color(0xFF03456C), : const Color(0xFF03456C),
......
...@@ -293,6 +293,7 @@ class _AnimatedSnackBarContentState extends State<_AnimatedSnackBarContent> ...@@ -293,6 +293,7 @@ class _AnimatedSnackBarContentState extends State<_AnimatedSnackBarContent>
Text( Text(
widget.title!, widget.title!,
style: const TextStyle( style: const TextStyle(
fontFamily: "Poppins",
color: Colors.white, color: Colors.white,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
fontSize: 16, fontSize: 16,
...@@ -305,6 +306,7 @@ class _AnimatedSnackBarContentState extends State<_AnimatedSnackBarContent> ...@@ -305,6 +306,7 @@ class _AnimatedSnackBarContentState extends State<_AnimatedSnackBarContent>
Text( Text(
widget.message, widget.message,
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
color: Colors.white.withOpacity(0.9), color: Colors.white.withOpacity(0.9),
fontSize: 14, fontSize: 14,
height: 1.4, height: 1.4,
......
...@@ -98,6 +98,7 @@ class CustomSnackBar { ...@@ -98,6 +98,7 @@ class CustomSnackBar {
title, title,
style: const TextStyle( style: const TextStyle(
color: Colors.white, color: Colors.white,
fontFamily: "Poppins",
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
fontSize: 15, fontSize: 15,
letterSpacing: -0.2, letterSpacing: -0.2,
...@@ -108,6 +109,7 @@ class CustomSnackBar { ...@@ -108,6 +109,7 @@ class CustomSnackBar {
Text( Text(
message, message,
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
color: Colors.white.withOpacity(0.9), color: Colors.white.withOpacity(0.9),
fontSize: 14, fontSize: 14,
height: 1.3, height: 1.3,
...@@ -142,6 +144,7 @@ class CustomSnackBar { ...@@ -142,6 +144,7 @@ class CustomSnackBar {
child: Text( child: Text(
action.label, action.label,
style: TextStyle( style: TextStyle(
fontFamily: "Poppins",
color: Colors.white, color: Colors.white,
fontSize: 12, fontSize: 12,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
......
...@@ -157,10 +157,10 @@ packages: ...@@ -157,10 +157,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: fake_async name: fake_async
sha256: "6a95e56b2449df2273fd8c45a662d6947ce1ebb7aafe80e550a3f68297f3cacc" sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.3.2" version: "1.3.3"
ffi: ffi:
dependency: transitive dependency: transitive
description: description:
...@@ -396,26 +396,26 @@ packages: ...@@ -396,26 +396,26 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: leak_tracker name: leak_tracker
sha256: c35baad643ba394b40aac41080300150a4f08fd0fd6a10378f8f7c6bc161acec sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "10.0.8" version: "11.0.2"
leak_tracker_flutter_testing: leak_tracker_flutter_testing:
dependency: transitive dependency: transitive
description: description:
name: leak_tracker_flutter_testing name: leak_tracker_flutter_testing
sha256: f8b613e7e6a13ec79cfdc0e97638fddb3ab848452eff057653abd3edba760573 sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.0.9" version: "3.0.10"
leak_tracker_testing: leak_tracker_testing:
dependency: transitive dependency: transitive
description: description:
name: leak_tracker_testing name: leak_tracker_testing
sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.0.1" version: "3.0.2"
lints: lints:
dependency: transitive dependency: transitive
description: description:
...@@ -841,10 +841,10 @@ packages: ...@@ -841,10 +841,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: test_api name: test_api
sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.7.4" version: "0.7.6"
typed_data: typed_data:
dependency: transitive dependency: transitive
description: description:
...@@ -889,10 +889,10 @@ packages: ...@@ -889,10 +889,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: vector_math name: vector_math
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.1.4" version: "2.2.0"
vm_service: vm_service:
dependency: transitive dependency: transitive
description: description:
...@@ -942,5 +942,5 @@ packages: ...@@ -942,5 +942,5 @@ packages:
source: hosted source: hosted
version: "6.5.0" version: "6.5.0"
sdks: sdks:
dart: ">=3.7.2 <4.0.0" dart: ">=3.8.0-0 <4.0.0"
flutter: ">=3.29.0" flutter: ">=3.29.0"