Answers for "flutter textfield focus on tap"

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
2

flutter unfocus textfield

FocusScope.of(context).unfocus();
Posted by: Guest on October-12-2020

Code answers related to "flutter textfield focus on tap"

Browse Popular Code Answers by Language