Updated 5 January 2024
When a text field is selected and accepting input, it is said to have “focus.” Generally, users shift focus to a text field by tapping, and developers shift focus to a text field programmatically by using the tools described in this recipe. It is the most important and functioning part of the Flutter app development focus system. We’re gonna use the FocusNode to handle the Keyboard focus.
You can also check out our Flutter app development services for more Flutter app development.
Let’s go to code side.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
class KeyboardFocusDemo extends StatefulWidget { const KeyboardFocusDemo({super.key}); @override State<KeyboardFocusDemo> createState() => _KeyboardFocusDemoState(); } class _KeyboardFocusDemoState extends State<KeyboardFocusDemo> { final FocusNode _nameFocusNode = FocusNode(); final FocusNode _emailFocusNode = FocusNode(); final FocusNode _passFocusNode = FocusNode(); @override void dispose() { _nameFocusNode.dispose(); _emailFocusNode.dispose(); _passFocusNode.dispose(); super.dispose(); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(), body: Padding( padding: const EdgeInsets.all(8.0), child: Column( children: <Widget>[ TextField( focusNode: _nameFocusNode, decoration: const InputDecoration( labelText: 'Name', border: OutlineInputBorder()), onSubmitted: (value) { _nameFocusNode.unfocus(); FocusScope.of(context).requestFocus(_emailFocusNode); }, ), const SizedBox(height: 16.0), TextField( focusNode: _emailFocusNode, decoration: const InputDecoration( labelText: 'Email', border: OutlineInputBorder()), onSubmitted: (value) { _emailFocusNode.unfocus(); FocusScope.of(context).requestFocus(_passFocusNode); }, ), const SizedBox(height: 16.0), TextField( focusNode: _passFocusNode, decoration: const InputDecoration( labelText: 'Password', border: OutlineInputBorder()), onSubmitted: (value) { _passFocusNode.unfocus(); }, ), ], ), )); } } |
An essential part of the focus system is the “focus node.” An object that represents a widget that can receive focus is called a focus node. The focus node of a widget becomes active when a user interacts with it by touching on it or using the keyboard to navigate to it.
That’s all for this Article.
We learned about some How to use FocusNode for TextField in Flutter in this blog.
Visit the link for additional information on the Keyboard Focus in Flutter.
Thanks for reading this blog. You can also check other blogs from here for more knowledge.
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.