shadowfoxish

Results 14 comments of shadowfoxish

Perhaps what is needed is a way OnDisappearing or a navigation event handler detecting "Pop" or "Go Back" to set a flag to indicate whether the view should be destructed...

A workaround I made for this is to just add it in the code behind. The display of this is related to the user's permission, which wont change for the...

Started seeing this as well after upgrading from, 7 to 8. In my case, it is happening in a very specific sequence of events involving the Display Action Sheet built-in....

I'm seeing the same problem, but sporadically. Sometimes the soft keyboard popups up with the Prompt, sometimes it doesn't. Observations: 1) The Prompt can be typed into when the keyboard...

Follow up: Digging through the debug log for the app, when I try to type on the soft or hardware keyboard when the prompt is in this weird disconnected state,...

(Sorry for spam, kind of excitedly debugging this) I found a possible work around, Add await Task.Yield(); before calling await DisplayPromptAsync(...), and it seems to fix my issue. Anyone else...

Could this be brought on by the Page being interacted with not having any focusable elements? In my particular case, I'm just showing a collection view with some data in...

Also confirmed. Android/.NET 7/Maui 7.0.52 This is a behavioral change, I previously had this implemented in the backing property like so and it seemed to work in Xamarin.Forms 5. ```...

Welp. *sigh* I feel kinda dumb now, but I was hoping all the problem was was a setting somewhere, and it seems like that was the case. Right-Click the solution,...

https://stackoverflow.com/a/65207398/1181624 You can also do a cast to a nullable type to make this issue go away. I posted that stack overflow answer before I found this post. ``` select...