ghost constant

AbstractButtonStyle const ghost

Ghost button variant with minimal visual presence.

Features no background or border by default, only showing on hover.

Implementation

static const AbstractButtonStyle ghost =
    ComponentThemeButtonStyle<GhostButtonTheme>(
  fallback: ButtonVariance(
    decoration: _buttonGhostDecoration,
    mouseCursor: _buttonMouseCursor,
    padding: _buttonPadding,
    textStyle: _buttonGhostTextStyle,
    iconTheme: _buttonGhostIconTheme,
    margin: _buttonZeroMargin,
  ),
);