canvas property

Color canvas

Canvas background color.

These are colors outside of the Material3 color scheme.

キャンバスの背景色。

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

Implementation

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