diff --git a/lib/src/utils/tools/modifiers.dart b/lib/src/utils/tools/modifiers.dart index 2880a19..73bf1d3 100644 --- a/lib/src/utils/tools/modifiers.dart +++ b/lib/src/utils/tools/modifiers.dart @@ -469,11 +469,14 @@ extension SemanticsModifier on Widget { /// Include Semantics with label this widget. Widget semantics({ Key? key, + Widget? child, bool container = false, bool explicitChildNodes = false, bool excludeSemantics = false, + bool blockUserActions = false, bool? enabled, bool? checked, + bool? mixed, bool? selected, bool? toggled, bool? button, @@ -493,8 +496,10 @@ extension SemanticsModifier on Widget { bool? hidden, bool? image, bool? liveRegion, + bool? expanded, int? maxValueLength, int? currentValueLength, + String? identifier, String? label, AttributedString? attributedLabel, String? value, @@ -505,6 +510,7 @@ extension SemanticsModifier on Widget { AttributedString? attributedDecreasedValue, String? hint, AttributedString? attributedHint, + String? tooltip, String? onTapHint, String? onLongPressHint, TextDirection? textDirection, @@ -535,9 +541,12 @@ extension SemanticsModifier on Widget { container: container, explicitChildNodes: explicitChildNodes, excludeSemantics: excludeSemantics, + blockUserActions: blockUserActions, properties: SemanticsProperties( enabled: enabled, checked: checked, + mixed: mixed, + expanded: expanded, toggled: toggled, selected: selected, button: button, @@ -559,6 +568,7 @@ extension SemanticsModifier on Widget { liveRegion: liveRegion, maxValueLength: maxValueLength, currentValueLength: currentValueLength, + identifier: identifier, label: label, attributedLabel: attributedLabel, value: value, @@ -569,6 +579,7 @@ extension SemanticsModifier on Widget { attributedDecreasedValue: attributedDecreasedValue, hint: hint, attributedHint: attributedHint, + tooltip: tooltip, textDirection: textDirection, sortKey: sortKey, tagForChildren: tagForChildren,