mobileView method

Widget mobileView(
  1. BuildContext context
)

Implementation

Widget mobileView(BuildContext context) {
  return Column(
    children: [
      HeaderWidget(
        customHeader: Text(
          "My Profile",
          style: TextStyle(
            fontSize: 24.dp,
            fontWeight: FontWeight.w600,
            color: ColorHelper.black02,
          ),
        ),
      ),
      Expanded(
        child: SingleChildScrollView(
          child: pageContent(),
        ),
      ),
    ],
  );
}