mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
22 lines
No EOL
950 B
XML
22 lines
No EOL
950 B
XML
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:uwp="using:Xamarin.Forms.Platform.UWP"
|
|
xmlns:local="using:Bit.UWP">
|
|
|
|
<local:IconConverter x:Key="IconConverter" />
|
|
|
|
<Style x:Key="TabbedPageStyle2" TargetType="uwp:FormsPivot">
|
|
<Setter Property="HeaderTemplate">
|
|
<Setter.Value>
|
|
<DataTemplate>
|
|
<StackPanel Orientation="Vertical">
|
|
<Image Source="{Binding Icon, Converter={StaticResource IconConverter}}" Width="24" Height="24" />
|
|
<TextBlock Name="TabbedPageHeaderTextBlock" Text="{Binding Title}"
|
|
Style="{ThemeResource BodyTextBlockStyle}" />
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</ResourceDictionary> |