5 references to UnselectedTabColor
Microsoft.Maui.Controls (3)
TabbedPage\TabbedPage.cs (2)
20 /// <summary>Bindable property for <see cref="UnselectedTabColor"/>.</summary> 21 public static readonly BindableProperty UnselectedTabColorProperty = BindableProperty.Create(nameof(UnselectedTabColor), typeof(Color), typeof(TabbedPage), default(Color));
TabbedPage\TabbedPage.Mapper.cs (1)
16 TabbedViewHandler.Mapper.ReplaceMapping<TabbedPage, ITabbedViewHandler>(nameof(UnselectedTabColor), MapUnselectedTabColor);
Microsoft.Maui.Controls.Compatibility (2)
iOS\Renderers\TabbedRenderer.cs (2)
496 if (Tabbed.IsSet(TabbedPage.UnselectedTabColorProperty) && Tabbed.UnselectedTabColor != null) 497 TabBar.UnselectedItemTintColor = Tabbed.UnselectedTabColor.ToPlatform();