buildBody method
Implementation
@nonVirtual
Widget buildBody(BuildContext context) {
final bodyChild = Lowder.editorMode
? buildEditorHandler(context)
: buildScreen(context, Schema.getLandingScreen());
return BlocListener<GlobalBloc, BaseState>(
listenWhen: widget.globalListenWhen,
listener: widget.globalListener,
child: bodyChild,
);
}