WallpaperTintedArea constructor

const WallpaperTintedArea({
  1. Key? key,
  2. required Color backgroundColor,
  3. bool insertRepaintBoundary = false,
  4. Widget? child,
})

Creates a WallpaperTintedArea.

Widgets wrapped in this widget will have a wallpaper tint applied to them.

Note: This widget only works on macOS.

Implementation

const WallpaperTintedArea({
  super.key,
  required this.backgroundColor,
  this.insertRepaintBoundary = false,
  this.child,
});