Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ class ReactiveCupertinoTypeAhead<T, V> extends ReactiveFormField<T, V> {
}

return CupertinoTypeAheadField<V>(
controller: controller,
suggestionsCallback: suggestionsCallback,
itemBuilder: itemBuilder,
onSelected: (value) {
Expand All @@ -162,7 +163,7 @@ class ReactiveCupertinoTypeAhead<T, V> extends ReactiveFormField<T, V> {
return CupertinoTextField(
controller: controller,
focusNode: focusNode,
enabled: enabled,
enabled: field.control.enabled,
decoration: decoration,
padding: padding,
placeholder: placeholder,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ class ReactiveTypeAhead<T, V> extends ReactiveFormField<T, V> {
TextAlign textAlign = TextAlign.start,
TextAlignVertical? textAlignVertical,
TextEditingController? textEditingController,
TextInputAction? textInputAction,
bool autofocus = false,
bool readOnly = false,
bool? showCursor,
Expand All @@ -143,6 +144,7 @@ class ReactiveTypeAhead<T, V> extends ReactiveFormField<T, V> {
}

return TypeAheadField<V>(
controller: controller,
suggestionsCallback: suggestionsCallback,
itemBuilder: itemBuilder,
onSelected: (value) {
Expand Down Expand Up @@ -171,6 +173,7 @@ class ReactiveTypeAhead<T, V> extends ReactiveFormField<T, V> {
textDirection: textDirection,
textAlign: textAlign,
textAlignVertical: textAlignVertical,
textInputAction: textInputAction,
autofocus: autofocus,
readOnly: readOnly,
showCursor: showCursor,
Expand Down