horizontalMobileLayout method

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

Activates for mobile device screen sizes ith a horizontal orientation. Override to customize the layout for these sizes. The body includes the widget returned by horizontalMobileBody.

Implementation

Widget horizontalMobileLayout(BuildContext context, Widget body) {
  return this.horizontalMobileBody(context);
}