James Crutchley
James Crutchley
Hmm. My NuGet package does that but if you want to do it yourself you can copy the page extensions from either MS [https://github.com/dotnet/maui/blob/main/src/Controls/src/Core/Platform/PageExtensions.cs](https://github.com/dotnet/maui/blob/main/src/Controls/src/Core/Platform/PageExtensions.cs) or better copy mine and then...
@BeepBeepBopBop can you test against main and see if the merged fix addresses your issue?
@vhugogarcia this has been fixed with above PR. Tested and verified.
https://github.com/xamarin/AndroidX/pull/779 has been merged.
about 90 percent done with porting now https://github.com/CommunityToolkit/Maui/pull/2076
Tested media element sample app and it works with autoplay enabled. @vhugogarcia
Sample: https://github.com/CommunityToolkit/Maui/assets/4167863/a88f46b9-4c1a-4412-9edd-af023794161a @vhugogarcia
Not sure how we want to handle this. There are many controls where default values are not set. Getting media info varies between devices and would require someone to write...
@vhugogarcia Those properties appear to duplicate existing properties that do the same thing. `MediaElement.HeightRequest` is a `VisualElement` that is a `BindableProperty` that sets the height. Same goes for width. Without...
> I think we're confusing two things here. Yes we have `HeightRequest` and `WidthRequest` but isn't that for the _control_? The `MediaWidth` and `MediaHeight` should tell me about the dimensions...