Created
December 14, 2019 16:31
-
-
Save rrifafauzikomara/3b813570cfbca76c066e567ea9831e4f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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