After much digging, I found a custom renderer that creates a bottom Tabbar on Xamarin Forms Uwp, but since it's based on a style I had to add to the UWP app.Xaml, I have no idea how to change the tabbar background and text colors.
Any Ideas? Or do you have a renderer that will work better?
The Style is at: https://pastebin.com/gyx0a5Bq
The Renderer code:
public class TabbedPageRenderer : Xamarin.Forms.Platform.UWP.TabbedPageRenderer
{
protected override void OnElementChanged(VisualElementChangedEventArgs e)
{
base.OnElementChanged(e);
if (Control != null)
Control.Style = (Windows.UI.Xaml.Style)Windows.UI.Xaml.Application.Current.Resources["PivotHeaderBottomStyle"];
}
}



