(.NET MAUI) 내비게이션 사이드바 색상 변경
App.xaml 섹션에서 아래와 같이 처리하면 모든 탐색 페이지의 막대 색상 및 막대 텍스트 색상을 변경할 수 있습니다. <Application.Resources> <ResourceDictionary> <Style TargetType=”NavigationPage”> <Setter Property=”BarBackgroundColor” Value=”#0D1A28″/> <Setter Property=”BarTextColor” Value=”White”/> </Style> </ResourceDictionary> </Application.Resources> 결과