void SetTintColor() =>
 Xamarin.Forms.PlatformConfiguration.AndroidSpecific.TabbedPage.SetBarSelectedItemColor(Element, SelectedTabItemDynamicTintColorEffect.GetSelectedTabTintColor(Element));
コード例 #2
0
        void SetTintColor()
        {
            var tabBar = Container.Subviews.First(v => v is UIKit.UITabBar);

            tabBar.TintColor = SelectedTabItemDynamicTintColorEffect.GetSelectedTabTintColor(Element).ToUIColor();
        }