Skip to content

Instantly share code, notes, and snippets.

@anoobbava
Created October 17, 2021 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anoobbava/0b966fba209aa70c5b1f63a25e58d496 to your computer and use it in GitHub Desktop.
Save anoobbava/0b966fba209aa70c5b1f63a25e58d496 to your computer and use it in GitHub Desktop.
for blogging
body: SingleChildScrollView(
child: Column(
children: <Widget>[
SizedBox(height: 10.0),
Text(
movieName,
style: TextStyle(fontSize: 22.0, fontWeight: FontWeight.bold),
),
SizedBox(height: 10.0),
Text(
movieOverview,
style: TextStyle(
fontSize: 18.0,
),
),
SizedBox(height: 10.0),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
Icon(
FontAwesomeIcons.check,
size: 25.0,
),
Icon(
FontAwesomeIcons.shareAlt,
size: 25.0,
),
],
),
SizedBox(height: 10.0),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
Text('My List'),
Text('Share'),
],
),
SizedBox(height: 10.0),
Text(
'Cast',
style: TextStyle(
fontSize: 18.0,
),
),
Actors(movieId),
SizedBox(height: 10.0),
Text(
'Similar movies',
style: TextStyle(
fontSize: 18.0,
),
),
SimilarMovies(movieId),
],
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment