6 references to UnselectedTabColor
Microsoft.Maui.Controls (6)
Compatibility\Handlers\TabbedPage\iOS\TabbedRenderer.cs (3)
491
if (tabbed.IsSet(TabbedPage.UnselectedTabColorProperty) && tabbed.
UnselectedTabColor
!= null)
492
TabBar.UnselectedItemTintColor = tabbed.
UnselectedTabColor
.ToPlatform();
532
tabbed.IsSet(TabbedPage.UnselectedTabColorProperty) ? tabbed.
UnselectedTabColor
: null,
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);