CircleButtonBuilder typedef
CircleButtonBuilder =
Widget Function({required Widget child, required bool isHover, required bool isPressed})
Implementation
typedef CircleButtonBuilder = Widget Function({
required bool isHover, // True when the mouse is over the button.
required bool isPressed, // True when the button is tapped-down.
required Widget child, // The widget that's displayed when there is no builder.
});