onBuildAppFilters property

List<Widget Function(BuildContext context, Widget app)>? onBuildAppFilters
final

It is executed when the application is built.

The widget generated by build of MasamuneApp is passed to app. Wrap widgets to add functionality.

Use it to add Scope widgets for other plug-ins, for example.

アプリケーションをビルドする際に実行されます。

appMasamuneAppbuildで生成されたウィジェットが渡されます。 ウィジェットをラップして機能を追加してください。

他プラグインのScopeウィジェットを追加する際などに用いてください。

Implementation

final List<Widget Function(BuildContext context, Widget app)>?
    onBuildAppFilters;