scaffoldBackgroundColor property

Color scaffoldBackgroundColor

Background color of Scaffold.

These are colors outside of the Material3 color scheme.

Scaffoldの背景色。

Material3のカラースキーム外のカラーです。

Implementation

Color get scaffoldBackgroundColor {
  if (_scaffoldBackgroundColor != null) {
    return _scaffoldBackgroundColor!;
  }
  return brightness == Brightness.dark ? Colors.grey[850]! : Colors.grey[50]!;
}