Skip to content

Commit

Permalink
fix: TM-32728 Locator Issue for MYWORK app part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
thelukewalton committed Jun 10, 2024
1 parent 1bbd5f1 commit d86410e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lib/src/utils/tools/modifiers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -505,6 +510,7 @@ extension SemanticsModifier on Widget {
AttributedString? attributedDecreasedValue,
String? hint,
AttributedString? attributedHint,
String? tooltip,
String? onTapHint,
String? onLongPressHint,
TextDirection? textDirection,
Expand Down Expand Up @@ -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,
Expand All @@ -559,6 +568,7 @@ extension SemanticsModifier on Widget {
liveRegion: liveRegion,
maxValueLength: maxValueLength,
currentValueLength: currentValueLength,
identifier: identifier,
label: label,
attributedLabel: attributedLabel,
value: value,
Expand All @@ -569,6 +579,7 @@ extension SemanticsModifier on Widget {
attributedDecreasedValue: attributedDecreasedValue,
hint: hint,
attributedHint: attributedHint,
tooltip: tooltip,
textDirection: textDirection,
sortKey: sortKey,
tagForChildren: tagForChildren,
Expand Down

0 comments on commit d86410e

Please sign in to comment.