Reputation: 1461
in xamrin froms app, we have a tabbar, we need to add some gradient color for that tab bar in both iOS and android devices. how can we that ?
Upvotes: 0
Views: 782
Reputation: 6648
The apply it to tabbar like:
UITabBar.Appearance.BackgroundImage = image;
Official documents: https://developer.xamarin.com/api/type/UIKit.UITabBar+UITabBarAppearance/
Upvotes: 1