buttons fixed

This commit is contained in:
amirrezaghabeli
2025-08-03 09:44:56 +03:30
parent 7aa082c6c8
commit 9e2da9a68c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ class LoginButton extends StatelessWidget {
child: ElevatedButton( child: ElevatedButton(
onPressed: onPressed, onPressed: onPressed,
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
backgroundColor: isEnabled ? ColorManager.mainBlue : Colors.grey[300], backgroundColor: isEnabled ? AppColors.mainBlue : Colors.grey[300],
foregroundColor: Colors.white, foregroundColor: Colors.white,
shape: RoundedRectangleBorder( shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(28.0.w()), borderRadius: BorderRadius.circular(28.0.w()),
+1 -1
View File
@@ -66,7 +66,7 @@ class LoginTextField extends StatelessWidget {
borderRadius: BorderRadius.circular(12.0.w()), borderRadius: BorderRadius.circular(12.0.w()),
), ),
focusedBorder: OutlineInputBorder( focusedBorder: OutlineInputBorder(
borderSide: BorderSide(color: ColorManager.borderBlue), borderSide: BorderSide(color: AppColors.borderBlue),
borderRadius: BorderRadius.circular(12.0.w()), borderRadius: BorderRadius.circular(12.0.w()),
), ),
), ),