getWidget method

Widget getWidget(
  1. BuildContext context
)

Implementation

Widget getWidget(BuildContext context) {
  return Form(
    key: _formKey,
    child: ListView(children: createWidgets(uiSchema, context, [])),
  );
}