onBuildApp method
Widgets can be added during the build of MasamuneApp.
The widget generated in MasamuneApp is passed to app.
Returning Widget will build the widget.
MasamuneAppのビルド時にウィジェットを追加することが可能です。
appにMasamuneApp内で生成されたウィジェットが渡されます。
Widgetを返すとそのウィジェットがビルドされます。
Implementation
@override
Widget onBuildApp(BuildContext context, Widget app) {
return MasamuneAdapterScope<GithubModelMasamuneAdapter>(
adapter: this,
child: app,
);
}