flutter_keyboard_actions
flutter_keyboard_actions copied to clipboard
Customize keyboard have bug with SafeArea
In case of customizing the keyboard:
- Wrap KeyboardActions by SafeArea
- displayActionBar: false
Then there is a redundancy space on the top the keyboard and the same color with the background color of Scaffold.
Screenshoot with SafeArea
Screenshoot without SafeArea
All related resources https://gist.github.com/159159951/ee2dae9d06d4db373a040da442c68bb1
bottom: false
, on SafeArea
will fix the issue.
SafeArea(
bottom: false,
child: KeyboardActions(
config: KeyboardActionsConfig(