From f87a873362253af920b5eb0db5fac5d0a1ac0b0c Mon Sep 17 00:00:00 2001 From: Mathis Kirchner Date: Wed, 13 May 2026 15:38:19 +0200 Subject: [PATCH] remove tooltip attribute --- lib/presentation/widgets/buttons/haptic_icon_button.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/presentation/widgets/buttons/haptic_icon_button.dart b/lib/presentation/widgets/buttons/haptic_icon_button.dart index 8da8e9f..f85800c 100644 --- a/lib/presentation/widgets/buttons/haptic_icon_button.dart +++ b/lib/presentation/widgets/buttons/haptic_icon_button.dart @@ -6,7 +6,6 @@ class HapticIconButton extends StatelessWidget { super.key, required this.icon, required this.onPressed, - this.tooltip, this.iconSize, this.color, this.padding, @@ -20,7 +19,6 @@ class HapticIconButton extends StatelessWidget { final Widget icon; final VoidCallback? onPressed; - final String? tooltip; final double? iconSize; final Color? color; final EdgeInsetsGeometry? padding; @@ -33,7 +31,6 @@ class HapticIconButton extends StatelessWidget { @override Widget build(BuildContext context) { return IconButton( - tooltip: tooltip, iconSize: iconSize, color: color, padding: padding,