sharee.bike-App/TINKLib/View/Themes/LastenradBayern.xaml

29 lines
1 KiB
Plaintext
Raw Normal View History

2022-09-20 13:51:55 +02:00
<?xml version="1.0" encoding="utf-8" ?>
2021-11-07 19:42:59 +01:00
<ResourceDictionary xmlns="http://xamarin.com/schemas/2014/forms"
2022-09-20 13:51:55 +02:00
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="TINK.Themes.LastenradBayern">
2022-08-30 15:42:25 +02:00
2022-09-20 13:51:55 +02:00
<!--Main color-->
<Color x:Key="primary-back-title-color">#009BDB</Color>
2022-08-30 15:42:25 +02:00
2022-09-20 13:51:55 +02:00
<!--Flyout Item-->
2022-08-30 15:42:25 +02:00
<Style TargetType="FlyoutItem">
<Setter Property="Shell.BackgroundColor" Value="{DynamicResource Key=primary-back-title-color}" />
</Style>
2022-09-20 13:51:55 +02:00
<!--Navbar-->
2022-08-30 15:42:25 +02:00
<Style x:Key="Label-Navbar" TargetType="Label">
2023-05-11 17:39:28 +02:00
<Setter Property="FontSize" Value="20"/>
<Setter Property="TextColor" Value="White"/>
2022-08-30 15:42:25 +02:00
<Setter Property="VerticalOptions" Value="Center"/>
<Setter Property="HorizontalOptions" Value="Start"/>
<Setter Property="Grid.Column" Value="1"/>
</Style>
<Style x:Key="Image-Navbar" TargetType="Image">
<Setter Property="Source" Value="swk_theme.png"/>
<Setter Property="Aspect" Value="AspectFill"/>
<Setter Property="Grid.ColumnSpan" Value="2"/>
</Style>
2022-09-20 13:51:55 +02:00
</ResourceDictionary>