narrowLayout method

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

Activates for non-mobile narrow screen sizes, such as a narrow desktop window or screen. Override to customize the layout for these sizes. The body includes the widget returned by narrowBody.

Implementation

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