Answers for "listview inside column flutter"

2

scroll column with listview

SingleChildScrollView(
        physics: ScrollPhysics(),
        child: Column(
          children: <Widget>[
             Text('Hey'),
             ListView.builder(
                physics: NeverScrollableScrollPhysics(),
                shrinkWrap: true,
                itemCount:18,
                itemBuilder: (context,index){
                  return  Text('Some text');
                })
          ],
        ),
      ),
Posted by: Guest on August-02-2020
7

listview inside column flutter

new Column(
  children: <Widget>[
    new Expanded(
      child: horizontalList,
    )
  ],
);
Posted by: Guest on November-17-2020

Code answers related to "listview inside column flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language