child property

Widget child
final

The widget below this widget in the tree.

The padding on the MediaQuery for the child will be suitably adjusted to zero out any sides that were avoided by this widget. The MediaQuery for the child will no longer contain any display features that split the screen into sub-screens.

This widget can only have one child. To lay out multiple children, let this widget's child be a widget such as Row, Column, or Stack, which have a children property, and then provide the children to that widget.

Implementation

final Widget child;