horizontalMobileLayout method

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

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

Implementation

@pragma('vm:prefer-inline')
Widget horizontalMobileLayout(BuildContext context, Widget body) {
  return wideLayout(context, body);
}