glassFill static method

Color glassFill(
  1. bool isDark
)

Translucent fill that sits in front of a BackdropFilter blur.

Implementation

static Color glassFill(bool isDark) => isDark
    ? const Color(0xFF151B26).withValues(alpha: 0.55)
    : Colors.white.withValues(alpha: 0.58);