getBigWidget method
Implementation
Widget getBigWidget(BuildContext context) {
return Scaffold(
appBar: appBar,
body: ResponsiveRow(
children: <Widget>[
FlexWidget(
child: drawer,
),
FlexWidget(
child: body,
),
],
),
);
}