I want to add add a row with a textformfield above the singleChildScrollView, but keep getting rendering errors. Please advise
Widget build(BuildContext context) {
return Scaffold(
body:
SingleChildScrollView(child:Column(
children: [
ListView.builder(
itemCount: lstNumber.length,
shrinkWrap: true,
padding: EdgeInsets.only(top: 10,bottom: 10),
itemBuilder: (context, index){
return
ListTile(
title: Text(lstNumber[index].toString(), style: TextStyle(color:Colors.red,fontSize: 15),),
);
}),
],
))
//],)
);
}