Skip to content

Commit

Permalink
fix: example settings
Browse files Browse the repository at this point in the history
  • Loading branch information
clragon committed Dec 13, 2024
1 parent f845d53 commit 1cfd00f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions example/lib/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,12 @@ class SettingsTypeAhead extends StatelessWidget
),
);
} else {
return ListTile(
key: ValueKey(setting.value),
leading: Icon(setting.icon),
title: Text(setting.title),
return IgnorePointer(
child: ListTile(
key: ValueKey(setting.value),
leading: Icon(setting.icon),
title: Text(setting.title),
),
);
}
},
Expand Down

0 comments on commit 1cfd00f

Please sign in to comment.