wideBody method

Widget wideBody(
  1. BuildContext context
)

Activates for non-mobile wide screen sizes, such as a wide desktop window or screen. Override to customize the body for these sizes.

Implementation

Widget wideBody(BuildContext context) {
  return this.body(context);
}