Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hrmoh committed Dec 8, 2023
1 parent 7ffa62d commit 656c909
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/forms/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class LoginFormState extends State<LoginForm> {
}
return null;
},
onFieldSubmitted: (value) => _login(),
onFieldSubmitted: (_) => _login(),
decoration: const InputDecoration(
icon: Icon(Icons.mail),
hintText: 'پست الکترونیکی',
Expand All @@ -105,7 +105,7 @@ class LoginFormState extends State<LoginForm> {
}
return null;
},
onFieldSubmitted: (value) => _login(),
onFieldSubmitted: (_) => _login(),
decoration: const InputDecoration(
icon: Icon(Icons.lock),
hintText: 'گذرواژه',
Expand Down

0 comments on commit 656c909

Please sign in to comment.