feat: add haptic feedback to even more user interactions
Some checks failed
Pull Request Pipeline / test (pull_request) Successful in 48s
Pull Request Pipeline / lint (pull_request) Failing after 51s

This commit is contained in:
2026-05-11 10:59:48 +02:00
parent bc59d1d91c
commit f1899bfe44
6 changed files with 45 additions and 18 deletions

View File

@@ -36,7 +36,9 @@ class _GroupTileState extends State<GroupTile> {
return GestureDetector(
onTap: () async {
await HapticFeedback.selectionClick();
widget.onTap?.call();
if (widget.onTap != null) {
widget.onTap!.call();
}
},
child: AnimatedContainer(
margin: CustomTheme.standardMargin,