render abstract method

Widget render(
  1. BuildContext context
)
inherited

Similar to the build method for widgets, this describes the part of the user interface represented by this widget.

Note that widget returned by this function will be placed under an Expanded widget, which in turn is nested under a Column with a crossAxisAlignment property set to CrossAxisAlignment.stretch and mainAxisAlignment set to MainAxisAlignment.start.

Implementation

Widget render(BuildContext context);