We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KeyboardActionsItem
while trying to add KeyboardActionsItem in scaffold, it hides below the keyboard and not visible.
version: keyboard_actions: ^4.2.0 flutter version: 3.7.1
keyboard_actions: ^4.2.0
ScaffoldWrapper( appBar: AppBar(), body: KeyboardActions( config: KeyboardActionsConfig( nextFocus: false, keyboardActionsPlatform: KeyboardActionsPlatform.ALL, actions: [ KeyboardActionsItem(focusNode: focusNode, enabled: true), ], ), child: Padding( padding: const EdgeInsets.all(8.0), child: TextField( focusNode: focusNode, ), ), ), )
The text was updated successfully, but these errors were encountered:
@coder-Aayush Have you found any workaround?
Sorry, something went wrong.
not yet
@coder-Aayush Have you found any workaround? not yet
You must have forgotten to add focus node in textfield, check it once..
No branches or pull requests
while trying to add
KeyboardActionsItem
in scaffold, it hides below the keyboard and not visible.version:
keyboard_actions: ^4.2.0
flutter version: 3.7.1
Code
Screenshoot
Video
keyboard.mp4
The text was updated successfully, but these errors were encountered: