defaultUnsupportedBuilder function

Widget defaultUnsupportedBuilder(
  1. BuildContext context,
  2. Elementbase element, {
  3. ElementConfiguration? configuration,
})

Implementation

Widget defaultUnsupportedBuilder(BuildContext context, s.Elementbase element,
    {ElementConfiguration? configuration}) {
  return Text('Unsupported element ${element.type ?? ""}')
      .wrapQuestionTitle(context, element, configuration: configuration);
}