xxxxxxxxxx
Column(
children: [
Text("header"),
Expanded(
child: SingleChildScrollView(
child: Column(
children: [
Text("item 1"),
Text("item 2"),
Text("item 3"),
Text("item 4"),
],
),
),
),
Text('Your super cool Footer'),
],
)