flutter_keyboard_size

Creator: coderz1093

Last updated:

Add to Cart

Description:

flutter keyboard size

flutter_keyboard_size #
When the virtual keyboard is opened, we can get its height with MediaQuery.of(context).viewInsets.bottom
BUT, in case of complicated widgets tree, it doesn't work. So, every time we have to mutate the keyboard size down to the widget tree.
This package is a straightforward and convenient provider that helps get info about: keyboard height, is it open or not, set bool value is screen small or not.

Usage #
After installing wrap Scaffold widget to
KeyboardSizeProvider(
smallSize: 500.0,
child: Scaffold(

copied to clipboard
where smallSize property is optional, default is 400.0
After that, down to the widget tree you can use Consumer widget to get info about keyboard
Widget build(BuildContext context) {
return Consumer<ScreenHeight>(
builder: (context, _res, child) {
return Center(
copied to clipboard
available properties:
double keyboardHeight
double screenHeight
bool isSmall // returns true if screen height becomes less then smallSize property
bool isOpen // true if open
copied to clipboard
Full example is here https://github.com/awaik/flutter_keyboard_size/tree/master/example
Credits #
This is a project by Agoradesk, P2P cryptocurrency trading platform.
Created by the team behind LocalMonero, the biggest and most trusted Monero P2P trading platform.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.