-
Notifications
You must be signed in to change notification settings - Fork 158
Description
Hi,
Let me start by saying this is an awesome plugin which am now using for all of my future projects! Amazing work there!
Now going back to the issue, I am working on an app which has a lot of text fields. I have notices that then the keypad opens about the amount of screen resizing (by Scaffold) which happens with the plugin is way less than what it does without the plugin. This is causing issue for me as the TextFields which is at the bottom of the screen is being covered by the keypad and there is no way to see what are we typing.
Here is my responsive configuration:
MaterialApp( builder: (context, widget) => ResponsiveWrapper.builder( BouncingScrollWrapper.builder(context, widget), maxWidth: 2200, minWidth: 480, defaultScale: true, breakpoints: [ ResponsiveBreakpoint.resize(480, name: MOBILE), ResponsiveBreakpoint.resize(800, name: TABLET), ResponsiveBreakpoint.autoScale(1000, name: DESKTOP), ], ),
Here are the images for reference:
Please have a look and let me know how this can be fixed!
Regards,
Rajdeep Barad