在我的AppShell。我有很多UI主题的设置。例如,
<Setter Property="Shell.BackgroundColor" Value="Blue" />
<Setter Property="Shell.TitleColor" Value="White" />
然而,我找不到在iOS中出现在<-(后退)按钮旁边的文本的Shell设置。我试过使用NavigationPage对象设置这个,但是没有效果。
如何设置?谢谢。
编辑:见下面我自己的答案/解决方案。
我找到解决办法了。
控制后退按钮颜色的是ForegroundColor setter。
例如:
<Setter Property="Shell.ForegroundColor" Value="White" />