skip to Main Content

how to takes a entire available space in column in flutter

I will explain with simple examble, class Demo1 extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: Column( children: [ Flexible( child: ListView( shrinkWrap: true, children: const [ ListTile( leading: Icon(Icons.image), title: Text('with shrinkwrap is true'),…

VIEW QUESTION
Back To Top
Search