buildPage abstract method

Widget buildPage(
  1. BuildContext context,
  2. Widget child
)

A function that allows you to modify the StandardPage or StandardPageWithResult before it is displayed. It will directly wrap the result of StandardPage.buildPage or StandardPageWithResult.buildPage.

When there are multiple Plugins, each Plugin will wrap the result of the previous Plugin. In other words, the result of the first Plugin will be wrapped by the second Plugin, and so on.

Implementation

Widget buildPage(BuildContext context, Widget child);