Skip to content

Instantly share code, notes, and snippets.

@alamsyahh15
Created September 29, 2021 13:02
Show Gist options
  • Save alamsyahh15/c9e38d0ca0822990cd7912ef4d3656cc to your computer and use it in GitHub Desktop.
Save alamsyahh15/c9e38d0ca0822990cd7912ef4d3656cc to your computer and use it in GitHub Desktop.
Widget _createListView(){
return Flexible(
child: ListView.builder(
itemCount: dataList.length,
itemBuilder: (BuildContext context, int index){
return InkWell(
onTap : (){
/// Your action navigator push
},
child: Card(
color: Colors.white,
elevation: 5,
child: Container(
margin: EdgeInsets.all(10.0),
child: Text("${dataList[index]}"),
),
),
);
}),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment