Results 97 comments of BlueRaja

In case anyone doesn't know what UWP is: https://en.wikipedia.org/wiki/Universal_Windows_Platform It's the new Windows API, used by Windows 10 and Windows 10 Phone apps.

There's also Xamarin.Forms Labs, which has _a ton_ of stuff missing from the base Xamarin.Forms: https://github.com/XLabs/Xamarin-Forms-Labs

I don't mean to be a pessimist, but I think if you want this functionality implemented you're most likely going to have to implement it yourself. But if you do,...

In general, you should separate your formatting commits from your actual code-change commits, or it's impossible to review. In fact, ideally they'd be separate PR's _(since formatting changes typically negatively...

Look at the diff before you commit?

Do a rebase --> squash --> force-push

"Clip function" could mean multiple things. Could you elaborate on this?

It's been a long time since I posted this, but I'm very familiar with `System.IO.Path`, so I'm certain I would have tried that and it didn't work, for whatever reason.

I just tried `BackgroundColor="#88000000"` in Mopups 1.3.0 and Maui 8.0.7, and the background is correctly partially transparent, while the popup itself is fully opaque, as expected. Could someone explain what...

I'm not able to reproduce this issue. Specifically, I added this unit test, which passes ``` public readonly struct TestKey : IComparable { public readonly float Key1; public readonly float...