I think you can try wrapping the `ListView` inside a `Container` and give a suitable `height` and `width.
Row(
children: [
Expanded(
flex: 5,
child: Column(
children: [
DataTable(),
ElevatedButton()
]
), // Column
), // Expanded
Expanded(
flex: 5,
child: Column(
children: [
Container(
height:,
width:,
child: ListView()),
ElevatedButton()
]
), // Column
) // Expanded
]
) // Row
You could do something like this..
Row(
children: [
Expanded(
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Text('Some other text'),
RaisedButton(
child: Text('Button'),
onPressed: (){},
),
],
),
),
Expanded(
child: RaisedButton(
child: Text('Button'),
onPressed: (){},
),
),
],
)