Skip to content

Commit

Permalink
Remove obscureText property unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
dab246 committed Aug 5, 2024
1 parent 68a71c8 commit ae95b4c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/src/presentation/language_tool_text_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ class LanguageToolTextField extends StatefulWidget {
final VoidCallback? onTap;
final TapRegionCallback? onTapOutside;
final TextInputAction? textInputAction;
final bool obscureText;
final TextInputType? keyboardType;
final Color? cursorColor;
final bool autoFocus;
Expand All @@ -73,7 +72,6 @@ class LanguageToolTextField extends StatefulWidget {
this.textDirection,
this.cursorColor,
this.autocorrect = true,
this.obscureText = false,
this.autoFocus = false,
this.readOnly = false,
this.textInputAction,
Expand Down Expand Up @@ -146,7 +144,6 @@ class _LanguageToolTextFieldState extends State<LanguageToolTextField> {
autocorrect: widget.autocorrect,
textInputAction: widget.textInputAction,
keyboardAppearance: widget.keyboardAppearance,
obscureText: widget.obscureText,
keyboardType: widget.keyboardType,
autofocus: widget.autoFocus,
readOnly: widget.readOnly,
Expand Down

0 comments on commit ae95b4c

Please sign in to comment.