i have this code in one of the pages
<FlipView ScrollViewer.VerticalScrollBarVisibility="Visible" x:Name="Flip" Grid.Row="1" AutomationProperties.AutomationId="ItemsFlipView" AutomationProperties.Name="Item Details" TabIndex="1" DataContext="{Binding RssModel}" d:DataContext="{d:DesignData Source=/Assets/Data/RssDataSource.json, Type=vm:RssViewModel, IsDesignTimeCreatable=true}" ItemsSource="{Binding Items}" ItemTemplate="{StaticResource Rss1DetailDetail}" SelectedItem="{Binding SelectedItem, Mode=TwoWay}" ItemContainerStyle="{StaticResource FlipItemStyle}"> </FlipView> i cant see the scrollbar because the background is white and i can see it when i set background to another color. how i can change scrollbar color to app foreground color (globally). i know it should be on styles but i want the exact code for it.