flutter_keyboard_actions icon indicating copy to clipboard operation
flutter_keyboard_actions copied to clipboard

Customize keyboard have bug with SafeArea

Open 159159951 opened this issue 3 years ago • 1 comments

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 image

Screenshoot without SafeArea image

All related resources https://gist.github.com/159159951/ee2dae9d06d4db373a040da442c68bb1

159159951 avatar Sep 28 '21 15:09 159159951

bottom: false, on SafeArea will fix the issue.

SafeArea(
        bottom: false,
        child: KeyboardActions(
          config: KeyboardActionsConfig(

diegoveloper avatar Sep 28 '21 15:09 diegoveloper