Skip to content

Instantly share code, notes, and snippets.

@rrifafauzikomara
Created December 14, 2019 16:31
Show Gist options
  • Save rrifafauzikomara/3b813570cfbca76c066e567ea9831e4f to your computer and use it in GitHub Desktop.
Save rrifafauzikomara/3b813570cfbca76c066e567ea9831e4f to your computer and use it in GitHub Desktop.
// poster
return Stack(
children: [
Padding(
padding: EdgeInsets.only(bottom: 140.0),
child: ArcBannerImage(imageBanner),
),
Positioned(
bottom: 0.0,
left: 16.0,
right: 16.0,
child: Row(
crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.end,
children: [
Poster(
imagePoster,
height: 180.0,
),
SizedBox(width: 16.0),
Expanded(child: movieInformation),
],
),
),
],
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment