Reputation: 17340
If you have whatsApp
application you know when we click on attachment
when soft keyboard is shows, whatsApp
can wrap soft keyboard by animation container
when keyboard is shows and when we click on attachment
button:
is it possible to implementing this feature in flutter
?
Upvotes: 3
Views: 365
Reputation: 17623
Firstly, what about trying this: pub.dev/packages/keyboard_overlay Do not use that package directly, since that package shows a customly drawn keyboard. But do use its idea - it reveals that, we can draw anything above the keyboard.
Secondly, another methodology is, draw something above everything in the android system. Please refer to how to draw over other apps in flutter? and the package https://pub.flutter-io.cn/packages/system_alert_window . If you can draw above everything, definitely you can draw above the keyboard, therefore creating the animation effect.
Upvotes: 1