Answers for "textfield inside listview not focus flutter"

1

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,
]
Posted by: Guest on September-29-2021
0

textfield inside listview not focus flutter

//textfield inside listview not focus 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,
]
Posted by: Guest on September-29-2021

Code answers related to "textfield inside listview not focus flutter"

Browse Popular Code Answers by Language