added new call end/wait icons

This commit is contained in:
NicKoehler
2023-02-15 13:19:15 +01:00
parent c5d39b0c10
commit 9525960802
7 changed files with 38 additions and 56 deletions

View File

@@ -6,8 +6,7 @@ class MenuButton extends StatefulWidget {
final Color hoverColor;
final Color? splashColor;
final Widget icon;
final double iconSize;
final String tooltip;
final String? tooltip;
final EdgeInsetsGeometry padding;
final bool enableFeedback;
const MenuButton({
@@ -16,9 +15,8 @@ class MenuButton extends StatefulWidget {
required this.color,
required this.hoverColor,
required this.icon,
required this.iconSize,
required this.tooltip,
this.splashColor,
this.tooltip = "",
this.padding = const EdgeInsets.all(5),
this.enableFeedback = true,
});