Skip to content

Commit ae95b4c

Browse files
committed
Remove obscureText property unnecessary
1 parent 68a71c8 commit ae95b4c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/src/presentation/language_tool_text_field.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ class LanguageToolTextField extends StatefulWidget {
4747
final VoidCallback? onTap;
4848
final TapRegionCallback? onTapOutside;
4949
final TextInputAction? textInputAction;
50-
final bool obscureText;
5150
final TextInputType? keyboardType;
5251
final Color? cursorColor;
5352
final bool autoFocus;
@@ -73,7 +72,6 @@ class LanguageToolTextField extends StatefulWidget {
7372
this.textDirection,
7473
this.cursorColor,
7574
this.autocorrect = true,
76-
this.obscureText = false,
7775
this.autoFocus = false,
7876
this.readOnly = false,
7977
this.textInputAction,
@@ -146,7 +144,6 @@ class _LanguageToolTextFieldState extends State<LanguageToolTextField> {
146144
autocorrect: widget.autocorrect,
147145
textInputAction: widget.textInputAction,
148146
keyboardAppearance: widget.keyboardAppearance,
149-
obscureText: widget.obscureText,
150147
keyboardType: widget.keyboardType,
151148
autofocus: widget.autoFocus,
152149
readOnly: widget.readOnly,

0 commit comments

Comments
 (0)