buildPage abstract method

Widget buildPage(
  1. BuildContext context,
  2. B stateManager
)

Builds the main content of the page.

stateManager is the instance this page provides to the widget tree — the same object context.read<B>() returns from anywhere below it.

Implementation

Widget buildPage(BuildContext context, B stateManager);