how to focus on textfield inside listview flutter
//how to focus on textfield inside listview flutter
final bottom = MediaQuery.of(context).viewInsets.bottom;
 SingleChildScrollView(
          reverse: true,
    child: Padding(
        padding: EdgeInsets.only(bottom: bottom),
            child: ListView(
              primary: false,
              physics: const NeverScrollableScrollPhysics(),
              shrinkWrap: true,
children: [
TextFormField,
]
