mobileScreen method

Widget mobileScreen(
  1. BuildContext context
)

Implementation

Widget mobileScreen(BuildContext context) {
  return Scaffold(
    body: Container(
      padding: MySpacing.top(MySpacing.safeAreaTop(context) + 20),
      height: MediaQuery.of(context).size.height,
      color: theme.cardTheme.color,
      child: SingleChildScrollView(
        child: child,
      ),
    ),
  );
}