mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-06-21 21:46:27 +02:00
Version 3.0.255
This commit is contained in:
parent
db9c288584
commit
5a26bf273b
1495 changed files with 159465 additions and 5060 deletions
|
@ -7,11 +7,13 @@ namespace TINK.Themes
|
|||
[XamlCompilation(XamlCompilationOptions.Compile)]
|
||||
public partial class Konrad : ResourceDictionary, ITheme
|
||||
{
|
||||
public const string OPERATORINFO = "Mein konrad";
|
||||
|
||||
public Konrad ()
|
||||
{
|
||||
InitializeComponent ();
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public string OperatorInfo => "Konrad Konstanz";
|
||||
public string OperatorInfo => OPERATORINFO;
|
||||
}
|
||||
}
|
11
TINKLib/View/Themes/LastenradBayern.xaml
Normal file
11
TINKLib/View/Themes/LastenradBayern.xaml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ResourceDictionary xmlns="http://xamarin.com/schemas/2014/forms"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="TINK.Themes.LastenradBayern">
|
||||
<!-- Pallete -->
|
||||
<Color x:Key="primary-back-title-color">#009BDB</Color>
|
||||
<!-- Pallete-end -->
|
||||
<Style ApplyToDerivedTypes="true" TargetType="NavigationPage">
|
||||
<Setter Property="BarBackgroundColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
||||
</Style>
|
||||
</ResourceDictionary>
|
19
TINKLib/View/Themes/LastenradBayern.xaml.cs
Normal file
19
TINKLib/View/Themes/LastenradBayern.xaml.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
using TINK.View.Themes;
|
||||
using Xamarin.Forms;
|
||||
using Xamarin.Forms.Xaml;
|
||||
|
||||
namespace TINK.Themes
|
||||
{
|
||||
[XamlCompilation(XamlCompilationOptions.Compile)]
|
||||
public partial class LastenradBayern : ResourceDictionary, ITheme
|
||||
{
|
||||
public const string OPERATORINFO = "Lastenrad Bayern";
|
||||
|
||||
public LastenradBayern()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public string OperatorInfo => OPERATORINFO;
|
||||
}
|
||||
}
|
|
@ -7,11 +7,13 @@ namespace TINK.Themes
|
|||
[XamlCompilation(XamlCompilationOptions.Compile)]
|
||||
public partial class ShareeBike : ResourceDictionary, ITheme
|
||||
{
|
||||
public const string OPERATORINFO = "sharee.bike";
|
||||
|
||||
public ShareeBike ()
|
||||
{
|
||||
InitializeComponent ();
|
||||
}
|
||||
|
||||
public string OperatorInfo => string.Empty;
|
||||
public string OperatorInfo => OPERATORINFO;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue