new Container(
margin: const EdgeInsets.fromLTRB(20.0, 10.0, 20.0, 10.0),
color: Colors.black12,
child: new Row(
children: <Widget>[
new Image.asset('images/driver.jpeg',
height: 80.0,
width:150.0,
alignment: Alignment.topLeft,
repeat:ImageRepeat.repeat ,
fit: BoxFit.fitHeight,
),
new Image.asset('images/car.png',
height: 80.0,
width:150.0,
alignment: Alignment.centerLeft,
)
],
),
),