You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
On mobile, when virtual keyboard is shown the UI doesn't adapt to the constrained viewPadding. In FluentUI we don't have an equivalent for Scaffold.resizeToAvoidBottomInset
Describe the solution you'd like
Add bool? resizeToAvoidBottomInset = true to ScaffoldPage in order to have a proper responsive UI on mobile and/or with virtual keyboards.
Describe alternatives you've considered
In order to have a system-wide behavior I've used this workarround:
// On every route that may show a virtual keyboardSafeArea(
child:Padding(
// Add bottom padding
padding:EdgeInsets.only(
bottom:MediaQuery.of(context).viewInsets.bottom),
child:YourWidget()))
Additional context
This is current behavior:
RPReplay_Final1659002105.mov
The text was updated successfully, but these errors were encountered:
// On every route that may show a virtual keyboardSafeArea(
child:Padding(
// Add bottom padding
padding:EdgeInsets.only(
bottom:MediaQuery.of(context).viewInsets.bottom),
child:YourWidget()))
If we add resizeToAvoidBottomInset property we may adapt it to apply existing ScaffoldPage paddings, if any.
Is your feature request related to a problem? Please describe.
On mobile, when virtual keyboard is shown the UI doesn't adapt to the constrained
viewPadding
. In FluentUI we don't have an equivalent for Scaffold.resizeToAvoidBottomInsetDescribe the solution you'd like
Add
bool? resizeToAvoidBottomInset = true
toScaffoldPage
in order to have a proper responsive UI on mobile and/or with virtual keyboards.Describe alternatives you've considered
In order to have a system-wide behavior I've used this workarround:
Additional context
This is current behavior:
RPReplay_Final1659002105.mov
The text was updated successfully, but these errors were encountered: