widgetBuilders property

Map<String, WidgetBuilderFunc> widgetBuilders
getter/setter pair

Implementation

Map<String, WidgetBuilderFunc> widgetBuilders = {
  "search-widget": (UXPProps uxpProps, Map<String, String>? params) =>
      new SearchScreen(
        uiProps: uxpProps.uiProps,
        key: UniqueKey(),
      ),
  "default": (UXPProps uxpProps, Map<String, String>? params) => Container(),
};