narrowBody method

Widget narrowBody(
  1. BuildContext context
)

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

Implementation

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