Skip to content

Commit 4c555c1

Browse files
committed
🐛 Exclude example emoji from semantics
1 parent eaa7601 commit 4c555c1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

example/lib/widgets/method_list_view.dart

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ class _MethodListViewState extends State<MethodListView> {
4040
width: 48,
4141
height: 48,
4242
child: Center(
43-
child: Text(
44-
model.icon,
45-
style: const TextStyle(fontSize: 28.0),
43+
child: ExcludeSemantics(
44+
child: Text(
45+
model.icon,
46+
style: const TextStyle(fontSize: 28.0),
47+
),
4648
),
4749
),
4850
),

0 commit comments

Comments
 (0)