Skip to content

Commit

Permalink
enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
prajapatihet committed Oct 26, 2024
1 parent bb98b46 commit 1ea234c
Showing 1 changed file with 22 additions and 18 deletions.
40 changes: 22 additions & 18 deletions lib/views/pages/login/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class _LoginPageState extends State<LoginPage> {
},
child: Text(
_text.forget_password,
style: TextStyle(
style: const TextStyle(
color: Color(0xff092414),
fontSize: 16,
fontWeight: FontWeight.w500),
Expand All @@ -218,16 +218,17 @@ class _LoginPageState extends State<LoginPage> {
child: Center(
child: Text(
_text.login,
style: TextStyle(
color: Colors.white,
fontSize: 22,
fontWeight: FontWeight.w500),
style: const TextStyle(
color: Colors.white,
fontSize: 22,
fontWeight: FontWeight.w500,
),
),
),
),
),
),

//Google Login
SizedBox(
height: screenHeight * 0.02,
Expand All @@ -249,27 +250,30 @@ class _LoginPageState extends State<LoginPage> {
children: [
Text(
_text.do_not_have_account,
style: TextStyle(
color: Colors.black54,
fontSize: 16,
fontWeight: FontWeight.w400),
style: const TextStyle(
color: Colors.black54,
fontSize: 16,
fontWeight: FontWeight.w400,
),
),

// SIGNUP BUTTON
TextButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const Signuppage(),
));
context,
MaterialPageRoute(
builder: (context) => const Signuppage(),
),
);
},
child: Text(
_text.signup,
style: TextStyle(
color: Color(0xff092414),
fontSize: 16,
fontWeight: FontWeight.w500),
style: const TextStyle(
color: Color(0xff092414),
fontSize: 16,
fontWeight: FontWeight.w500,
),
),
)
],
Expand Down

0 comments on commit 1ea234c

Please sign in to comment.