我正在使用 Xamarin.Forms 并希望在所有页面中导航以拥有 #84DCC6。它添加了,但我不想在导航页面的顶部有蓝色(这是 Android 项目中的默认设置),我只想有一种颜色 #84DCC6。这是我在 App.xaml 中的代码
<Application.Resources>
<ResourceDictionary>
<Style TargetType="NavigationPage">
<Setter Property="BarBackgroundColor" Value="#84DCC6" />
<Setter Property="BarTextColor" Value="Black" />
</Style>
</ResourceDictionary>
</Application.Resources>
我正在小米 A2 Lite 上测试我的应用程序。任何建议只是一种颜色#84DCC6
