Answers for "text field auto unfocus in flutter"

1

flutter textbutton autofocus

TextButton(
              autofocus: true, // boolean
              onPressed: (){}, 
              child: const Text('TextButton')
            )
Posted by: Guest on August-24-2021
2

flutter unfocus textfield

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

Browse Popular Code Answers by Language