-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grid View Row is not working as expected #9458
Comments
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process. |
Is this issue going to resolve in upcoming releases? Because this is affecting in so many scenario. |
This is still a problem. It causes weird behaviors when using Entries with Grids, two widely used components. I experienced an issue similar to the one described here in the very first page (a simple login page) I developed for an application in .NET MAUI. |
@riccardominato @sattasundar in your project if you add the following code does it resolve the issue for you? public class MainActivity : MauiAppCompatActivity
{
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
Window.SetSoftInputMode(Android.Views.SoftInput.AdjustPan);
}
} |
Hi @sattasundar. We have added the "s/needs-info" label to this issue, which indicates that we have an open question for you before we can take further action. This issue will be closed automatically in 7 days if we do not hear back from you by then - please feel free to re-open it if you come back to this issue after that time. |
Thank you @PureWeen. Your hint solved the issue for me. |
Thank you for testing!! I'm going to close this issue as fixed by #11356 If that seems incorrect @sattasundar let me know. |
Description
I have created sample app in both Xamarin.Forms and MAUI. And create same ui in a page using Grid , which seems different behavior.
The issue is , we can't fix any view/control at the bottom of Grid. It getting moved along with keyboard while focused on Entry control like below;
Xamarin.Forms Result:
MAUI Result:
Steps to Reproduce
Sample XAML Code:
Version with bug
6.0.486 (current)
Last version that worked well
Unknown/Other
Affected platforms
Android
Affected platform versions
Android 12
Did you find any workaround?
No response
Relevant log output
No response
The text was updated successfully, but these errors were encountered: