Aaron Eversole
Aaron Eversole
I am running Xamarin Forms 5 on Android, and am not having this issue. I did have to install AndroidX.MediaRouter and AndroidX.Palette, but I believe that these issues are unrelated...
I am having a similar issue: ```csharp public class YAxisRenderer : ChartYAxisRenderer { public YAxisRenderer(ChartViewPortHandler viewPortHandler, ChartYAxis yAxis, ChartTransformer transformer) : base(viewPortHandler, yAxis, transformer) { } public override void RenderLimitLinesWithContext(CGContext...
@PureWeen What must be true to get this resolved? This is something that is plaguing our production app as well.
We ran into this issue as well. iOS 15 has added a `ScrollEdgeAppearance` property to the `UITabBar` that causes this behavior. To get this to work, the UIColor needs to...
I wonder how much of this is happening because of the partial classes between XAML and code-behind because all of the errors that I am getting now deal with "InitializeComponent()"...
I was able to create a MAUI project that uses no XAML, and all views are declared in C# (Using MauiReactor). Then I created an xUnit test project for it,...