Skip to content

Instantly share code, notes, and snippets.

@TechieBlossom
Created November 16, 2019 15:38
Show Gist options
  • Save TechieBlossom/cb27beed03e70d6767b50e11e9c0fb06 to your computer and use it in GitHub Desktop.
Save TechieBlossom/cb27beed03e70d6767b50e11e9c0fb06 to your computer and use it in GitHub Desktop.
return Scaffold(
body: Stack(
children: <Widget>[
ProductDetailBackground(
screenHeight: screenHeight,
screenWidth: screenWidth,
),
SingleChildScrollView(
child: Column(
children: <Widget>[
ProductDetailTopBar(),
ProductContentWidget(product: product, screenHeight: screenHeight),
],
),
),
],
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment