Skip to content

Commit

Permalink
Master key character limiting removed
Browse files Browse the repository at this point in the history
  • Loading branch information
GleammerRay committed Mar 13, 2024
1 parent a352e22 commit c7d78cc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
6 changes: 0 additions & 6 deletions lib/screens/add_account_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,6 @@ class _AddAccountScreen extends State<StatefulWidget> {
decoration: InputDecoration(
hintText: localizations.password,
),
inputFormatters: [
LengthLimitingTextInputFormatter(32),
],
),
)
],
Expand Down Expand Up @@ -239,9 +236,6 @@ class _AddAccountScreen extends State<StatefulWidget> {
_confirmPassword = a;
}),
onSubmitted: (value) => _addAccount(),
inputFormatters: [
LengthLimitingTextInputFormatter(32),
],
),
),
FloatingActionButton(
Expand Down
3 changes: 0 additions & 3 deletions lib/screens/login_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -390,9 +390,6 @@ class _LoginScreen extends State<LoginScreen> {
decoration: InputDecoration(
hintText: localizations.password,
),
inputFormatters: [
LengthLimitingTextInputFormatter(32),
],
autofocus: true,
),
),
Expand Down

0 comments on commit c7d78cc

Please sign in to comment.