The best solution is to use Flexible, but if you want to give it an exact height you should use Container like this:
Widget ListView() {
return Container(
height:100.0,
child: ListView(
padding: new EdgeInsets.symmetric(vertical: 8.0),
children: Item()));
}