728x90
728x170
App.xaml 단에 아래처럼 처리해 주면 모든 Navigation Page 의 Bar color , Bar Text Color 를 변경할 수 있습니다.
<Application.Resources>
<ResourceDictionary>
<Style TargetType="NavigationPage">
<Setter Property="BarBackgroundColor" Value="#0D1A28"/>
<Setter Property="BarTextColor" Value="White"/>
</Style>
</ResourceDictionary>
</Application.Resources>
결과
728x90
그리드형
'C# > Xamarin Maui' 카테고리의 다른 글
[.NET MAUI] Share (0) | 2023.04.12 |
---|---|
[.NET MAUI] Login Sample Page (0) | 2023.04.04 |
figma to maui graphics (0) | 2023.03.22 |
[.NET MAUI] 디바이스 기능 알아보기 (0) | 2023.03.21 |
[.NET MAUI] CollectionView 데이터 가로로 나타내기 (0) | 2023.03.21 |