mobileView method
- BuildContext context
Implementation
Widget mobileView(BuildContext context) {
return Column(
children: [
HeaderWidget(
customHeader: customHeaderMobile(),
),
Expanded(
child: SingleChildScrollView(
child: pageContent(),
),
),
],
);
}