Answers for "show list conect using listview in flutter"

0

listview under listview flutter

// add 2 line in inner listview
ListView.builder(
        shrinkWrap: true,
          physics: ClampingScrollPhysics(),
          itemBuilder: (context, index) {
          return Container(
          child: Text("item"),
          );
        },
       itemCount: 20
 )
Posted by: Guest on January-17-2022

Code answers related to "show list conect using listview in flutter"

Browse Popular Code Answers by Language