scaffoldContainer static method
Common Scaffold Container
Implementation
static Scaffold scaffoldContainer(List<Widget> widgets,
{Container? backgroundContainer}) {
return Scaffold(
body: Container(
child: new Stack(
children: <Widget>[
backgroundContainer != null
? backgroundContainer
: emptyContainer(),
sliverScrollView(widgets),
],
),
),
);
}