Shane Neuville
Shane Neuville
### Description of Change Bump WinAppSDK 1.2 #### TODO - Wait for 1.2 to be stable - remove dependency on the Build tools
### Description - On the `BasicFrameTest` first change this line ```C# frame.ToHandler(MauiContext).PlatformView.AttachAndRun(async () => ``` to ```C# frame.ToPlatform(MauiContext).AttachAndRun(async () => ``` - Run Test and see that it fails. This...
### Description of Change The code we use to try and auto close the keyboard when clicking off of an entry field causes the UISwitch to not work the first...
This behavior broke https://github.com/xamarin/Xamarin.Forms/pull/8551 The reason here is that the modal page is now nested inside a NavigationView so we need to set some backgrounds on the WindowRootView to transparent...
### Description of Change If a UISwitch grows larger than 101 in width it's no longer toggleable via VO (bug has been logged with Apple) You can test this inside...
Try this to fix iOS alternate solution would be to remove the gesture recognizer on the Grid and set SelectionMode on the CollectionView to single and see if that works
### Description This issue is an extension of the following [issue](https://github.com/dotnet/maui/issues/10978). This is happening because `MAUI` doesn't re-evaluate the layout size of the modal page when the keyboard is dismissed....
### Description Original issue [here](https://github.com/dotnet/maui/issues/6933) In XF `Window.SetSoftInputMode(Android.Views.SoftInput.AdjustPan);` would get called after the `OnCreate` call whereas in MAUI it's called before `OnCreate`. It seems like this causes the property to...
Currently on Android and iOS when you navigate forward on Shell (or nav page) only the backbutton is visible. This is the default behavior of each platform but we should...
### Description Copied from https://github.com/dotnet/maui/issues/6933#issuecomment-1236381789 In `XF` when you click/tapped outside of a focused entry the entry would lose focus and the keyboard would close. This behavior wasn't copied over...