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
1 change: 1 addition & 0 deletions docs_snippets/lib/examples/widgets/autocomplete.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const timezones = {
};

@RoutePage()
@Options(include: [features])
class AutocompletePage extends Example {
AutocompletePage({@queryParam super.theme});

Expand Down
3 changes: 3 additions & 0 deletions forui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 0.22.0 (Next)

### `FAutocomplete`
* Fix `FAutocomplete` not showing context menu by default.

### `FButton`
* Fix `FButton` announcing both `semanticsLabel` and child semantics when `semanticsLabel` is set.

Expand Down
4 changes: 2 additions & 2 deletions forui/lib/src/widgets/autocomplete/autocomplete.dart
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ class FAutocomplete extends StatefulWidget with FFormFieldProperties<String> {
bool stylusHandwritingEnabled = true,
bool enableIMEPersonalizedLearning = true,
ContentInsertionConfiguration? contentInsertionConfiguration,
EditableTextContextMenuBuilder? contextMenuBuilder,
EditableTextContextMenuBuilder? contextMenuBuilder = FTextField.defaultContextMenuBuilder,
bool canRequestFocus = true,
Comment thread
Pante marked this conversation as resolved.
UndoHistoryController? undoController,
SpellCheckConfiguration? spellCheckConfiguration,
Expand Down Expand Up @@ -603,7 +603,7 @@ class FAutocomplete extends StatefulWidget with FFormFieldProperties<String> {
this.stylusHandwritingEnabled = true,
this.enableIMEPersonalizedLearning = true,
this.contentInsertionConfiguration,
this.contextMenuBuilder,
this.contextMenuBuilder = FTextField.defaultContextMenuBuilder,
this.canRequestFocus = true,
this.undoController,
this.spellCheckConfiguration,
Expand Down
Loading