I have the following but I would like for the Text title to also scroll with the list. How to do this?
Widget build(BuildContext context) {
return Column(
children: [
Text("hello"),
ListView.builder(
itemBuilder: (BuildContext context, int index) {
return UserWidget(
firstName: userdetails[index]['first_name'],
lastName: userdetails[index]['last_name'],
imageURL: userdetails[index]['image_url'],
);
},
itemCount: userdetails.length,
),
]
);
}