layout method

Widget layout(
  1. BuildContext context,
  2. Widget body
)

Activates for screen sizes that do not match the criteria for mobileLayout, horizontalMobileLayout, narrowLayout, or wideLayout. Override to customize these sizes. The body includes the widget returned by this.body.

Implementation

Widget layout(BuildContext context, Widget body) {
  return body;
}