Skip to content

Commit ef1bc99

Browse files
author
Github-actions
committed
Automatic linting
1 parent fcead12 commit ef1bc99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/screens/auth_screen.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,13 +246,13 @@ class _AuthCardState extends State<AuthCard> {
246246
textInputAction: TextInputAction.next,
247247
keyboardType: TextInputType.emailAddress,
248248
validator: (value) {
249-
if (value==null || value.isEmpty) {
249+
if (value == null || value.isEmpty) {
250250
return AppLocalizations.of(context).invalidUsername;
251251
}
252252
if (!RegExp(r'^[\w.@+-]+$').hasMatch(value!)) {
253253
return AppLocalizations.of(context).usernameValidChars;
254254
}
255-
255+
256256
return null;
257257
},
258258
inputFormatters: [FilteringTextInputFormatter.deny(RegExp(r'\s\b|\b\s'))],

0 commit comments

Comments
 (0)