Code for the body:
body: Column(
children: [
const SizedBox(
height: 100.0,
),
Image.asset(
"assets/images/bike.jpg",
width: 300,
height: 300,
fit: BoxFit.cover,
),
const Text(
"My Bike",
style: TextStyle(
color: Colors.blue,
fontSize: 30.0,
),
),
const SizedBox(
height: 20.0,
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Image.asset(
"assets/images/google.jpg",
width: 50.0,
height: 50.0,
fit: BoxFit.cover,
),
Image.asset(
"assets/images/twitter.jog",
width: 50.0,
height: 50.0,
fit: BoxFit.cover,
),
Image.asset(
"assets/images/facebook.png",
width: 50.0,
height: 50.0,
fit: BoxFit.cover,
),
],
)
],
),
No comments:
Post a Comment