horizontalMobileBody method

Widget horizontalMobileBody(
  1. BuildContext context
)

Activates for mobile device screen sizes ith a horizontal orientation. Override to customize the body for these sizes.

Implementation

Widget horizontalMobileBody(BuildContext context) {
  return Center(
    child: Icon(
      Icons.rotate_90_degrees_ccw,
      size: 48.sc,
      color: Theme.of(context).colorScheme.onSurface,
    ),
  );
}