Stack_Scroll function
Implementation
Widget Stack_Scroll({
required Widget header,
required List<Widget> content,
}) {
return PopScope(
canPop: false,
child: Scaffold(
body: SafeArea(
child: SingleChildScrollView(
child: Column(
children: [
header,
Container(
padding: const EdgeInsets.symmetric(horizontal: 24),
child: CustomColumn(content, 24),
),
],
),
),
),
),
);
}