Unverified Commit 5dfa50c8 authored by Casey Hillers's avatar Casey Hillers Committed by GitHub

Revert "Add button semantics in list tile" (#112779)

parent 81dfe322
......@@ -747,7 +747,6 @@ class ListTile extends StatelessWidget {
autofocus: autofocus,
enableFeedback: enableFeedback ?? tileTheme.enableFeedback ?? true,
child: Semantics(
button: onTap != null,
selected: selected,
enabled: enabled,
child: Ink(
......
......@@ -325,7 +325,6 @@ void main() {
),
TestSemantics.rootChild(
flags: <SemanticsFlag>[
SemanticsFlag.isButton,
SemanticsFlag.hasEnabledState,
SemanticsFlag.isEnabled,
SemanticsFlag.isFocusable,
......
......@@ -407,7 +407,6 @@ void main() {
SemanticsFlag.hasCheckedState,
SemanticsFlag.hasEnabledState,
SemanticsFlag.isEnabled,
SemanticsFlag.isButton,
SemanticsFlag.isInMutuallyExclusiveGroup,
SemanticsFlag.isFocusable,
],
......@@ -445,7 +444,6 @@ void main() {
SemanticsFlag.isChecked,
SemanticsFlag.hasEnabledState,
SemanticsFlag.isEnabled,
SemanticsFlag.isButton,
SemanticsFlag.isInMutuallyExclusiveGroup,
SemanticsFlag.isFocusable,
],
......
......@@ -677,7 +677,6 @@ void main() {
hasToggledState: true,
isToggled: true,
isEnabled: true,
isButton: true,
isFocusable: true,
hasEnabledState: true,
label: 'Switch tile',
......
......@@ -76,7 +76,6 @@ void main() {
SemanticsFlag.hasEnabledState,
SemanticsFlag.hasToggledState,
SemanticsFlag.isEnabled,
SemanticsFlag.isButton,
SemanticsFlag.isFocusable,
SemanticsFlag.isToggled,
],
......@@ -92,7 +91,6 @@ void main() {
SemanticsFlag.hasEnabledState,
SemanticsFlag.isChecked,
SemanticsFlag.isEnabled,
SemanticsFlag.isButton,
SemanticsFlag.isFocusable,
],
actions: SemanticsAction.tap.index,
......@@ -106,7 +104,6 @@ void main() {
SemanticsFlag.hasCheckedState,
SemanticsFlag.hasEnabledState,
SemanticsFlag.isEnabled,
SemanticsFlag.isButton,
SemanticsFlag.isFocusable,
SemanticsFlag.isInMutuallyExclusiveGroup,
],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment