ContentArea constructor

const ContentArea({
  1. required ScrollableWidgetBuilder? builder,
  2. double minWidth = 300,
})

Creates a widget that fills the body of the scaffold. The builder can be null to show an empty widget.

The width of this widget is automatically calculated in MacosScaffoldScope.

Implementation

const ContentArea({
  required this.builder,
  this.minWidth = 300,
}) : super(key: const Key('macos_scaffold_content_area'));