Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/stable' into stable
Browse files Browse the repository at this point in the history
# Conflicts:
#	lib/src/text_field/base_text_field.dart
  • Loading branch information
stefanschaller committed Oct 24, 2023
2 parents 0862fb7 + 879ac0e commit 2c11648
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/src/text_field/base_text_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ class BaseTextField extends StatefulWidget {
final TextCapitalization textCapitalization;

final TextAlignVertical textAlignVertical;
final bool? cursorOpacityAnimates;

final bool readOnly;

Expand Down Expand Up @@ -94,6 +95,7 @@ class BaseTextField extends StatefulWidget {
this.inputFormatter,
this.textAlignVertical = TextAlignVertical.center,
this.readOnly = false,
this.cursorOpacityAnimates,
this.onTap,
Key? key,
}) : super(key: key);
Expand Down Expand Up @@ -163,6 +165,7 @@ class BaseTextFieldState extends State<BaseTextField>
autofillHints: widget.autofillHints,
inputFormatters: widget.inputFormatter,
onFieldSubmitted: widget.onFieldSubmitted,
cursorOpacityAnimates: widget.cursorOpacityAnimates,
expands: widget.expands,
onTap: widget.onTap,
maxLengthEnforcement:
Expand Down

0 comments on commit 2c11648

Please sign in to comment.