getIt static method

Widget getIt(
  1. BuildContext context,
  2. AppModel app,
  3. bool create,
  4. double widgetWidth,
  5. double widgetHeight,
)

Implementation

static Widget getIt(BuildContext context, AppModel app, bool create,
    double widgetWidth, double widgetHeight) {
  return BlocProvider<AppCreateBloc>(
    create: (context) => AppCreateBloc(app.documentID, app)
      ..add(AppCreateEventValidateEvent(app)),
    child: AppCreateWidget._(
      app: app,
      create: create,
      widgetWidth: widgetWidth,
      widgetHeight: widgetHeight,
    ),
  );
}