我正在测试Xamarin.Forms Shell。这是我的AppShell.xaml
:
<Shell xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:views="clr-namespace:PhotosXamarin.Views"
x:Class="PhotosXamarin.AppShell"
BackgroundColor="#2A2A2A"
TitleColor="White">
<TabBar>
<views:PhotosView
IconImageSource="camera"
Title="Photos" />
<views:FavoritePhotosView
IconImageSource="favorite"
Title="Favorites" />
</TabBar>
</Shell>
问题在于未显示的未选中标签图标:
有人遇到同样的问题吗?
谢谢!