widgetBuilders property
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(),
};