Xamarin.forms : 如何为标签栏添加渐变色
Xamarin.forms : how to add a gradient color for tabbar
在 xamarin forms 应用程序中,我们有一个标签栏,我们需要在 iOS 和 android 设备中为该标签栏添加一些渐变颜色。我们怎么能这样?
- 由您的设计师制作具有渐变颜色的图像;
将其应用于标签栏,如:
UITabBar.Appearance.BackgroundImage = image;
Official documents:
https://developer.xamarin.com/api/type/UIKit.UITabBar+UITabBarAppearance/
在 xamarin forms 应用程序中,我们有一个标签栏,我们需要在 iOS 和 android 设备中为该标签栏添加一些渐变颜色。我们怎么能这样?
- 由您的设计师制作具有渐变颜色的图像;
将其应用于标签栏,如:
UITabBar.Appearance.BackgroundImage = image;
Official documents: https://developer.xamarin.com/api/type/UIKit.UITabBar+UITabBarAppearance/