systemGroupedBackground constant

CupertinoDynamicColor const systemGroupedBackground

The color for the main background of your grouped interface, equivalent to UIColor.systemGroupedBackground.

Typically used for grouped content, including table views and platter-based designs.

Implementation

static const CupertinoDynamicColor systemGroupedBackground = CupertinoDynamicColor(
  debugLabel: 'systemGroupedBackground',
  color: Color.fromARGB(255, 242, 242, 247),
  darkColor: Color.fromARGB(255, 0, 0, 0),
  highContrastColor: Color.fromARGB(255, 235, 235, 240),
  darkHighContrastColor: Color.fromARGB(255, 0, 0, 0),
  elevatedColor: Color.fromARGB(255, 242, 242, 247),
  darkElevatedColor: Color.fromARGB(255, 28, 28, 30),
  highContrastElevatedColor: Color.fromARGB(255, 235, 235, 240),
  darkHighContrastElevatedColor: Color.fromARGB(255, 36, 36, 38),
);