I am adding app bar in my windows phone 8.1 app . I set requested theme as dark in my app bar button. But when I change my start up theme its color also changes. I tried to put image as app bar button icon still it is dependent on theme as my image is white yet it is showing in black when theme is set to light.
<Page.BottomAppBar>
<CommandBar Background="#FFF3A716">
<AppBarButton Label="Home" RequestedTheme="Dark" Click="AppBarButton_Click">
<AppBarButton.Icon>
<BitmapIcon HorizontalAlignment="Center" VerticalAlignment="Center" UriSource="/Assets/Images/home-icon.png">
</BitmapIcon>
</AppBarButton.Icon>
</AppBarButton>
<AppBarButton Label="Tips" RequestedTheme="Dark">
<AppBarButton.Icon>
<BitmapIcon HorizontalAlignment="Center" VerticalAlignment="Center" UriSource="/Assets/Images/tips-icon.png">
</BitmapIcon>
</AppBarButton.Icon>
</AppBarButton>
</CommandBar>
</Page.BottomAppBar>
Need help?