mobileLayout method

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

Activates for mobile device screen sizes. Override to customize the layout for these sizes. The body includes the widget returned by mobileLayout.

Implementation

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