mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-06-22 05:47:28 +02:00
Initial version.
This commit is contained in:
parent
193aaa1a56
commit
b72c67a53e
228 changed files with 25924 additions and 0 deletions
7
TINKLib/View/Themes/ITheme.cs
Normal file
7
TINKLib/View/Themes/ITheme.cs
Normal file
|
@ -0,0 +1,7 @@
|
|||
namespace TINK.View.Themes
|
||||
{
|
||||
public interface ITheme
|
||||
{
|
||||
string OperatorInfo { get; }
|
||||
}
|
||||
}
|
11
TINKLib/View/Themes/Konrad.xaml
Normal file
11
TINKLib/View/Themes/Konrad.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.Konrad">
|
||||
<!-- Pallete -->
|
||||
<Color x:Key="primary-back-title-color">Red</Color>
|
||||
<!-- Pallete-end -->
|
||||
<Style ApplyToDerivedTypes="true" TargetType="NavigationPage">
|
||||
<Setter Property="BarBackgroundColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
||||
</Style>
|
||||
</ResourceDictionary>
|
17
TINKLib/View/Themes/Konrad.xaml.cs
Normal file
17
TINKLib/View/Themes/Konrad.xaml.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using TINK.View.Themes;
|
||||
using Xamarin.Forms;
|
||||
using Xamarin.Forms.Xaml;
|
||||
|
||||
namespace TINK.Themes
|
||||
{
|
||||
[XamlCompilation(XamlCompilationOptions.Compile)]
|
||||
public partial class Konrad : ResourceDictionary, ITheme
|
||||
{
|
||||
public Konrad ()
|
||||
{
|
||||
InitializeComponent ();
|
||||
}
|
||||
|
||||
public string OperatorInfo => "Konrad Konstanz";
|
||||
}
|
||||
}
|
11
TINKLib/View/Themes/ShareeBike.xaml
Normal file
11
TINKLib/View/Themes/ShareeBike.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.ShareeBike">
|
||||
<!-- Pallete -->
|
||||
<Color x:Key="primary-back-title-color">#009899</Color>
|
||||
<!-- Pallete-end -->
|
||||
<Style ApplyToDerivedTypes="true" TargetType="NavigationPage">
|
||||
<Setter Property="BarBackgroundColor" Value="{DynamicResource Key=primary-back-title-color}"/>
|
||||
</Style>
|
||||
</ResourceDictionary>
|
17
TINKLib/View/Themes/ShareeBike.xaml.cs
Normal file
17
TINKLib/View/Themes/ShareeBike.xaml.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using TINK.View.Themes;
|
||||
using Xamarin.Forms;
|
||||
using Xamarin.Forms.Xaml;
|
||||
|
||||
namespace TINK.Themes
|
||||
{
|
||||
[XamlCompilation(XamlCompilationOptions.Compile)]
|
||||
public partial class ShareeBike : ResourceDictionary, ITheme
|
||||
{
|
||||
public ShareeBike ()
|
||||
{
|
||||
InitializeComponent ();
|
||||
}
|
||||
|
||||
public string OperatorInfo => string.Empty;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue