change name
continuous-integration/drone/push Build is passing
Details
@ -1,14 +1,14 @@
|
||||
<?xml version = "1.0" encoding = "UTF-8" ?>
|
||||
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:Qwirkle"
|
||||
x:Class="Qwirkle.App">
|
||||
<Application.Resources>
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
|
||||
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
</Application.Resources>
|
||||
</Application>
|
||||
<?xml version = "1.0" encoding = "UTF-8" ?>
|
||||
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:Qwirkle"
|
||||
x:Class="Qwirkle.App">
|
||||
<Application.Resources>
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
|
||||
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
</Application.Resources>
|
||||
</Application>
|
@ -1,43 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<Shell
|
||||
x:Class="Qwirkle.AppShell"
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:Qwirkle"
|
||||
xmlns:localPages="clr-namespace:Qwirkle.Pages"
|
||||
Shell.FlyoutBehavior="Flyout"
|
||||
Title="Qwirkle"
|
||||
FlyoutBackgroundColor="White">
|
||||
|
||||
|
||||
|
||||
<ShellContent
|
||||
Title="MainPage"
|
||||
ContentTemplate="{DataTemplate local:MainPage}"
|
||||
Route="MainPage" />
|
||||
<ShellContent
|
||||
Title="SetPlayers"
|
||||
ContentTemplate="{DataTemplate localPages:SetPlayers}"
|
||||
Route="SetPlayers" />
|
||||
<ShellContent
|
||||
Title="Gameboard"
|
||||
ContentTemplate="{DataTemplate localPages:Gameboard}"
|
||||
Route="Gameboard" />
|
||||
<ShellContent
|
||||
Title="Leaderboard"
|
||||
ContentTemplate="{DataTemplate localPages:Leaderboard}"
|
||||
Route="Leaderboard" />
|
||||
<ShellContent
|
||||
Title="Scoreboard"
|
||||
ContentTemplate="{DataTemplate localPages:Scoreboard}"
|
||||
Route="Scoreboard" />
|
||||
<ShellContent
|
||||
Title="Settings"
|
||||
ContentTemplate="{DataTemplate localPages:Settings}"
|
||||
Route="Settings" />
|
||||
<ShellContent
|
||||
Title="Credits"
|
||||
ContentTemplate="{DataTemplate localPages:Credits}"
|
||||
Route="Credits" />
|
||||
|
||||
</Shell>
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<Shell
|
||||
x:Class="Qwirkle.AppShell"
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:Qwirkle"
|
||||
xmlns:localPages="clr-namespace:Qwirkle.Pages"
|
||||
Shell.FlyoutBehavior="Flyout"
|
||||
Title="Qwirkle"
|
||||
FlyoutBackgroundColor="White">
|
||||
|
||||
|
||||
|
||||
<ShellContent
|
||||
Title="MainPage"
|
||||
ContentTemplate="{DataTemplate local:MainPage}"
|
||||
Route="MainPage" />
|
||||
<ShellContent
|
||||
Title="SetPlayers"
|
||||
ContentTemplate="{DataTemplate localPages:SetPlayers}"
|
||||
Route="SetPlayers" />
|
||||
<ShellContent
|
||||
Title="Gameboard"
|
||||
ContentTemplate="{DataTemplate localPages:Gameboard}"
|
||||
Route="Gameboard" />
|
||||
<ShellContent
|
||||
Title="Leaderboard"
|
||||
ContentTemplate="{DataTemplate localPages:Leaderboard}"
|
||||
Route="Leaderboard" />
|
||||
<ShellContent
|
||||
Title="Scoreboard"
|
||||
ContentTemplate="{DataTemplate localPages:Scoreboard}"
|
||||
Route="Scoreboard" />
|
||||
<ShellContent
|
||||
Title="Settings"
|
||||
ContentTemplate="{DataTemplate localPages:Settings}"
|
||||
Route="Settings" />
|
||||
<ShellContent
|
||||
Title="Credits"
|
||||
ContentTemplate="{DataTemplate localPages:Credits}"
|
||||
Route="Credits" />
|
||||
|
||||
</Shell>
|
@ -1,42 +1,42 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.MainPage"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views">
|
||||
|
||||
<ScrollView>
|
||||
<VerticalStackLayout
|
||||
Padding="30,0"
|
||||
Spacing="25">
|
||||
|
||||
<Label
|
||||
Text="QWIRKLE"
|
||||
Style="{StaticResource SuperTitle}"
|
||||
/>
|
||||
|
||||
<Image
|
||||
Source="qwirklelogo.png"
|
||||
HeightRequest="300"
|
||||
Aspect="AspectFit"
|
||||
/>
|
||||
|
||||
<!-- Play / Continue / Leaderboard / Rules / Settings / Credits -->
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
</VerticalStackLayout>
|
||||
|
||||
|
||||
</ScrollView>
|
||||
|
||||
</ContentPage>
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.MainPage"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views">
|
||||
|
||||
<ScrollView>
|
||||
<VerticalStackLayout
|
||||
Padding="30,0"
|
||||
Spacing="25">
|
||||
|
||||
<Label
|
||||
Text="QWIRKLE"
|
||||
Style="{StaticResource SuperTitle}"
|
||||
/>
|
||||
|
||||
<Image
|
||||
Source="qwirklelogo.png"
|
||||
HeightRequest="300"
|
||||
Aspect="AspectFit"
|
||||
/>
|
||||
|
||||
<!-- Play / Continue / Leaderboard / Rules / Settings / Credits -->
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
<controls:ButtonShadow></controls:ButtonShadow>
|
||||
|
||||
</VerticalStackLayout>
|
||||
|
||||
|
||||
</ScrollView>
|
||||
|
||||
</ContentPage>
|
@ -1,39 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.Pages.Gameboard"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views"
|
||||
Title="Gameboard">
|
||||
<VerticalStackLayout MaximumHeightRequest="1080"
|
||||
MaximumWidthRequest="1920">
|
||||
|
||||
<Label
|
||||
Text="Test"/>
|
||||
|
||||
|
||||
|
||||
<Rectangle Fill="White" Stroke="CornflowerBlue" StrokeThickness="10" RadiusX="20"
|
||||
HeightRequest="500"
|
||||
WidthRequest="700" />
|
||||
|
||||
|
||||
<!-- Test grille dans la grille -->
|
||||
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width= "1000" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*" />
|
||||
<RowDefinition Height="3*" />
|
||||
<RowDefinition Height="*" />
|
||||
</Grid.RowDefinitions>
|
||||
</Grid>
|
||||
|
||||
<Grid ColumnDefinitions="1000" RowDefinitions="*, 3, *">
|
||||
|
||||
</Grid>
|
||||
|
||||
|
||||
</VerticalStackLayout>
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.Pages.Gameboard"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views"
|
||||
Title="Gameboard">
|
||||
<VerticalStackLayout MaximumHeightRequest="1080"
|
||||
MaximumWidthRequest="1920">
|
||||
|
||||
<Label
|
||||
Text="Test"/>
|
||||
|
||||
|
||||
|
||||
<Rectangle Fill="White" Stroke="CornflowerBlue" StrokeThickness="10" RadiusX="20"
|
||||
HeightRequest="500"
|
||||
WidthRequest="700" />
|
||||
|
||||
|
||||
<!-- Test grille dans la grille -->
|
||||
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width= "1000" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*" />
|
||||
<RowDefinition Height="3*" />
|
||||
<RowDefinition Height="*" />
|
||||
</Grid.RowDefinitions>
|
||||
</Grid>
|
||||
|
||||
<Grid ColumnDefinitions="1000" RowDefinitions="*, 3, *">
|
||||
|
||||
</Grid>
|
||||
|
||||
|
||||
</VerticalStackLayout>
|
||||
</ContentPage>
|
@ -1,77 +1,77 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.Pages.Leaderboard"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views"
|
||||
Title="Leaderboard">
|
||||
|
||||
<ScrollView>
|
||||
<VerticalStackLayout Spacing="25" Padding="5, 5, 5, 10">
|
||||
<Grid Style="{StaticResource GridMain}">
|
||||
<controls:GoBack></controls:GoBack>
|
||||
<Label Text="Leaderboard"
|
||||
Style="{StaticResource Title}"/>
|
||||
</Grid>
|
||||
|
||||
<Border Style="{StaticResource TabBorder}">
|
||||
|
||||
<Border.Shadow>
|
||||
<Shadow/>
|
||||
</Border.Shadow>
|
||||
<Border.StrokeShape>
|
||||
<RoundRectangle CornerRadius="3"/>
|
||||
</Border.StrokeShape>
|
||||
|
||||
<VerticalStackLayout>
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
</VerticalStackLayout>
|
||||
</Border>
|
||||
|
||||
|
||||
</VerticalStackLayout>
|
||||
|
||||
</ScrollView>
|
||||
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.Pages.Leaderboard"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views"
|
||||
Title="Leaderboard">
|
||||
|
||||
<ScrollView>
|
||||
<VerticalStackLayout Spacing="25" Padding="5, 5, 5, 10">
|
||||
<Grid Style="{StaticResource GridMain}">
|
||||
<controls:GoBack></controls:GoBack>
|
||||
<Label Text="Leaderboard"
|
||||
Style="{StaticResource Title}"/>
|
||||
</Grid>
|
||||
|
||||
<Border Style="{StaticResource TabBorder}">
|
||||
|
||||
<Border.Shadow>
|
||||
<Shadow/>
|
||||
</Border.Shadow>
|
||||
<Border.StrokeShape>
|
||||
<RoundRectangle CornerRadius="3"/>
|
||||
</Border.StrokeShape>
|
||||
|
||||
<VerticalStackLayout>
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:LeaderboardLine></controls:LeaderboardLine>
|
||||
</VerticalStackLayout>
|
||||
</Border>
|
||||
|
||||
|
||||
</VerticalStackLayout>
|
||||
|
||||
</ScrollView>
|
||||
|
||||
</ContentPage>
|
@ -1,9 +1,9 @@
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Leaderboard : ContentPage
|
||||
{
|
||||
public Leaderboard()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Leaderboard : ContentPage
|
||||
{
|
||||
public Leaderboard()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -1,50 +1,50 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.Pages.Scoreboard"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views"
|
||||
Title="Scoreboard">
|
||||
<ScrollView>
|
||||
<VerticalStackLayout Spacing="25" Padding="5, 5, 5, 10">
|
||||
|
||||
<Grid Style="{StaticResource GridMain}">
|
||||
<controls:GoBack></controls:GoBack>
|
||||
<Label Text="Scoreboard"
|
||||
Style="{StaticResource Title}"
|
||||
/>
|
||||
</Grid>
|
||||
|
||||
<Border Style="{StaticResource TabBorder}">
|
||||
|
||||
<Border.Shadow>
|
||||
<Shadow/>
|
||||
</Border.Shadow>
|
||||
<Border.StrokeShape>
|
||||
<RoundRectangle CornerRadius="3"/>
|
||||
</Border.StrokeShape>
|
||||
|
||||
<VerticalStackLayout>
|
||||
<controls:ScoreboardLine></controls:ScoreboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:ScoreboardLine></controls:ScoreboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:ScoreboardLine></controls:ScoreboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:ScoreboardLine></controls:ScoreboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:ScoreboardLine></controls:ScoreboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
</VerticalStackLayout>
|
||||
</Border>
|
||||
|
||||
</VerticalStackLayout>
|
||||
|
||||
|
||||
</ScrollView>
|
||||
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.Pages.Scoreboard"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views"
|
||||
Title="Scoreboard">
|
||||
<ScrollView>
|
||||
<VerticalStackLayout Spacing="25" Padding="5, 5, 5, 10">
|
||||
|
||||
<Grid Style="{StaticResource GridMain}">
|
||||
<controls:GoBack></controls:GoBack>
|
||||
<Label Text="Scoreboard"
|
||||
Style="{StaticResource Title}"
|
||||
/>
|
||||
</Grid>
|
||||
|
||||
<Border Style="{StaticResource TabBorder}">
|
||||
|
||||
<Border.Shadow>
|
||||
<Shadow/>
|
||||
</Border.Shadow>
|
||||
<Border.StrokeShape>
|
||||
<RoundRectangle CornerRadius="3"/>
|
||||
</Border.StrokeShape>
|
||||
|
||||
<VerticalStackLayout>
|
||||
<controls:ScoreboardLine></controls:ScoreboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:ScoreboardLine></controls:ScoreboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:ScoreboardLine></controls:ScoreboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:ScoreboardLine></controls:ScoreboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
<controls:ScoreboardLine></controls:ScoreboardLine>
|
||||
<Rectangle/>
|
||||
|
||||
</VerticalStackLayout>
|
||||
</Border>
|
||||
|
||||
</VerticalStackLayout>
|
||||
|
||||
|
||||
</ScrollView>
|
||||
|
||||
</ContentPage>
|
@ -1,9 +1,9 @@
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Scoreboard : ContentPage
|
||||
{
|
||||
public Scoreboard()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Scoreboard : ContentPage
|
||||
{
|
||||
public Scoreboard()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -1,38 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.Pages.Settings"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views"
|
||||
Title="Settings">
|
||||
<ScrollView>
|
||||
<VerticalStackLayout Spacing="25" Padding="5">
|
||||
|
||||
<Grid Style="{StaticResource GridMain}">
|
||||
<controls:GoBack></controls:GoBack>
|
||||
<Label Text="Settings"
|
||||
Style="{StaticResource Title}"/>
|
||||
</Grid>
|
||||
|
||||
<VerticalStackLayout>
|
||||
<Grid RowDefinitions="50"
|
||||
ColumnDefinitions="*, *">
|
||||
|
||||
<HorizontalStackLayout Grid.Row="0"
|
||||
Grid.Column="0"
|
||||
HorizontalOptions="Center">
|
||||
<Label
|
||||
Text="Sound"
|
||||
Style="{StaticResource ContentSetting}"/>
|
||||
|
||||
<Switch/>
|
||||
|
||||
</HorizontalStackLayout>
|
||||
|
||||
<Slider Style="{StaticResource SliderSound}"/>
|
||||
</Grid>
|
||||
<Rectangle></Rectangle>
|
||||
</VerticalStackLayout>
|
||||
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.Pages.Settings"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views"
|
||||
Title="Settings">
|
||||
<ScrollView>
|
||||
<VerticalStackLayout Spacing="25" Padding="5">
|
||||
|
||||
<Grid Style="{StaticResource GridMain}">
|
||||
<controls:GoBack></controls:GoBack>
|
||||
<Label Text="Settings"
|
||||
Style="{StaticResource Title}"/>
|
||||
</Grid>
|
||||
|
||||
<VerticalStackLayout>
|
||||
<Grid RowDefinitions="50"
|
||||
ColumnDefinitions="*, *">
|
||||
|
||||
<HorizontalStackLayout Grid.Row="0"
|
||||
Grid.Column="0"
|
||||
HorizontalOptions="Center">
|
||||
<Label
|
||||
Text="Sound"
|
||||
Style="{StaticResource ContentSetting}"/>
|
||||
|
||||
<Switch/>
|
||||
|
||||
</HorizontalStackLayout>
|
||||
|
||||
<Slider Style="{StaticResource SliderSound}"/>
|
||||
</Grid>
|
||||
<Rectangle></Rectangle>
|
||||
</VerticalStackLayout>
|
||||
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
</ContentPage>
|
@ -1,9 +1,9 @@
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Settings : ContentPage
|
||||
{
|
||||
public Settings()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Settings : ContentPage
|
||||
{
|
||||
public Settings()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#512BD4</color>
|
||||
<color name="colorPrimaryDark">#2B0B98</color>
|
||||
<color name="colorAccent">#2B0B98</color>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#512BD4</color>
|
||||
<color name="colorPrimaryDark">#2B0B98</color>
|
||||
<color name="colorAccent">#2B0B98</color>
|
||||
</resources>
|
@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<!-- See https://aka.ms/maui-publish-app-store#add-entitlements for more information about adding entitlements.-->
|
||||
<dict>
|
||||
<!-- App Sandbox must be enabled to distribute a MacCatalyst app through the Mac App Store. -->
|
||||
<key>com.apple.security.app-sandbox</key>
|
||||
<true/>
|
||||
<!-- When App Sandbox is enabled, this value is required to open outgoing network connections. -->
|
||||
<key>com.apple.security.network.client</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<!-- See https://aka.ms/maui-publish-app-store#add-entitlements for more information about adding entitlements.-->
|
||||
<dict>
|
||||
<!-- App Sandbox must be enabled to distribute a MacCatalyst app through the Mac App Store. -->
|
||||
<key>com.apple.security.app-sandbox</key>
|
||||
<true/>
|
||||
<!-- When App Sandbox is enabled, this value is required to open outgoing network connections. -->
|
||||
<key>com.apple.security.network.client</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
|
@ -1,38 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<!-- The Mac App Store requires you specify if the app uses encryption. -->
|
||||
<!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/itsappusesnonexemptencryption -->
|
||||
<!-- <key>ITSAppUsesNonExemptEncryption</key> -->
|
||||
<!-- Please indicate <true/> or <false/> here. -->
|
||||
|
||||
<!-- Specify the category for your app here. -->
|
||||
<!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/lsapplicationcategorytype -->
|
||||
<!-- <key>LSApplicationCategoryType</key> -->
|
||||
<!-- <string>public.app-category.YOUR-CATEGORY-HERE</string> -->
|
||||
<key>UIDeviceFamily</key>
|
||||
<array>
|
||||
<integer>2</integer>
|
||||
</array>
|
||||
<key>UIRequiredDeviceCapabilities</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>XSAppIconAssets</key>
|
||||
<string>Assets.xcassets/appicon.appiconset</string>
|
||||
</dict>
|
||||
</plist>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<!-- The Mac App Store requires you specify if the app uses encryption. -->
|
||||
<!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/itsappusesnonexemptencryption -->
|
||||
<!-- <key>ITSAppUsesNonExemptEncryption</key> -->
|
||||
<!-- Please indicate <true/> or <false/> here. -->
|
||||
|
||||
<!-- Specify the category for your app here. -->
|
||||
<!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/lsapplicationcategorytype -->
|
||||
<!-- <key>LSApplicationCategoryType</key> -->
|
||||
<!-- <string>public.app-category.YOUR-CATEGORY-HERE</string> -->
|
||||
<key>UIDeviceFamily</key>
|
||||
<array>
|
||||
<integer>2</integer>
|
||||
</array>
|
||||
<key>UIRequiredDeviceCapabilities</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>XSAppIconAssets</key>
|
||||
<string>Assets.xcassets/appicon.appiconset</string>
|
||||
</dict>
|
||||
</plist>
|
@ -1,17 +1,17 @@
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using System;
|
||||
|
||||
namespace Qwirkle
|
||||
{
|
||||
internal class Program : MauiApplication
|
||||
{
|
||||
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
||||
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var app = new Program();
|
||||
app.Run(args);
|
||||
}
|
||||
}
|
||||
}
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using System;
|
||||
|
||||
namespace Qwirkle
|
||||
{
|
||||
internal class Program : MauiApplication
|
||||
{
|
||||
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
||||
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var app = new Program();
|
||||
app.Run(args);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
<maui:MauiWinUIApplication
|
||||
x:Class="Qwirkle.WinUI.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:maui="using:Microsoft.Maui"
|
||||
xmlns:local="using:Qwirkle.WinUI">
|
||||
|
||||
</maui:MauiWinUIApplication>
|
||||
<maui:MauiWinUIApplication
|
||||
x:Class="Qwirkle.WinUI.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:maui="using:Microsoft.Maui"
|
||||
xmlns:local="using:Qwirkle.WinUI">
|
||||
|
||||
</maui:MauiWinUIApplication>
|
@ -1,46 +1,46 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package
|
||||
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
||||
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
||||
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
|
||||
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
||||
IgnorableNamespaces="uap rescap">
|
||||
|
||||
<Identity Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.0.0" />
|
||||
|
||||
<mp:PhoneIdentity PhoneProductId="2E50F92F-40F0-4D57-AA51-4423DB9F6645" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
||||
|
||||
<Properties>
|
||||
<DisplayName>$placeholder$</DisplayName>
|
||||
<PublisherDisplayName>User Name</PublisherDisplayName>
|
||||
<Logo>$placeholder$.png</Logo>
|
||||
</Properties>
|
||||
|
||||
<Dependencies>
|
||||
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
||||
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
||||
</Dependencies>
|
||||
|
||||
<Resources>
|
||||
<Resource Language="x-generate" />
|
||||
</Resources>
|
||||
|
||||
<Applications>
|
||||
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
|
||||
<uap:VisualElements
|
||||
DisplayName="$placeholder$"
|
||||
Description="$placeholder$"
|
||||
Square150x150Logo="$placeholder$.png"
|
||||
Square44x44Logo="$placeholder$.png"
|
||||
BackgroundColor="transparent">
|
||||
<uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" />
|
||||
<uap:SplashScreen Image="$placeholder$.png" />
|
||||
</uap:VisualElements>
|
||||
</Application>
|
||||
</Applications>
|
||||
|
||||
<Capabilities>
|
||||
<rescap:Capability Name="runFullTrust" />
|
||||
</Capabilities>
|
||||
|
||||
</Package>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package
|
||||
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
||||
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
||||
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
|
||||
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
||||
IgnorableNamespaces="uap rescap">
|
||||
|
||||
<Identity Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.0.0" />
|
||||
|
||||
<mp:PhoneIdentity PhoneProductId="2E50F92F-40F0-4D57-AA51-4423DB9F6645" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
||||
|
||||
<Properties>
|
||||
<DisplayName>$placeholder$</DisplayName>
|
||||
<PublisherDisplayName>User Name</PublisherDisplayName>
|
||||
<Logo>$placeholder$.png</Logo>
|
||||
</Properties>
|
||||
|
||||
<Dependencies>
|
||||
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
||||
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
||||
</Dependencies>
|
||||
|
||||
<Resources>
|
||||
<Resource Language="x-generate" />
|
||||
</Resources>
|
||||
|
||||
<Applications>
|
||||
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
|
||||
<uap:VisualElements
|
||||
DisplayName="$placeholder$"
|
||||
Description="$placeholder$"
|
||||
Square150x150Logo="$placeholder$.png"
|
||||
Square44x44Logo="$placeholder$.png"
|
||||
BackgroundColor="transparent">
|
||||
<uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" />
|
||||
<uap:SplashScreen Image="$placeholder$.png" />
|
||||
</uap:VisualElements>
|
||||
</Application>
|
||||
</Applications>
|
||||
|
||||
<Capabilities>
|
||||
<rescap:Capability Name="runFullTrust" />
|
||||
</Capabilities>
|
||||
|
||||
</Package>
|
@ -1,15 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<assemblyIdentity version="1.0.0.0" name="Qwirkle.WinUI.app"/>
|
||||
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<!-- The combination of below two tags have the following effect:
|
||||
1) Per-Monitor for >= Windows 10 Anniversary Update
|
||||
2) System < Windows 10 Anniversary Update
|
||||
-->
|
||||
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware>
|
||||
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, PerMonitor</dpiAwareness>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
</assembly>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<assemblyIdentity version="1.0.0.0" name="Qwirkle.WinUI.app"/>
|
||||
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<!-- The combination of below two tags have the following effect:
|
||||
1) Per-Monitor for >= Windows 10 Anniversary Update
|
||||
2) System < Windows 10 Anniversary Update
|
||||
-->
|
||||
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware>
|
||||
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, PerMonitor</dpiAwareness>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
</assembly>
|
@ -1,32 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>UIDeviceFamily</key>
|
||||
<array>
|
||||
<integer>1</integer>
|
||||
<integer>2</integer>
|
||||
</array>
|
||||
<key>UIRequiredDeviceCapabilities</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>XSAppIconAssets</key>
|
||||
<string>Assets.xcassets/appicon.appiconset</string>
|
||||
</dict>
|
||||
</plist>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>UIDeviceFamily</key>
|
||||
<array>
|
||||
<integer>1</integer>
|
||||
<integer>2</integer>
|
||||
</array>
|
||||
<key>UIRequiredDeviceCapabilities</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>XSAppIconAssets</key>
|
||||
<string>Assets.xcassets/appicon.appiconset</string>
|
||||
</dict>
|
||||
</plist>
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"profiles": {
|
||||
"Windows Machine": {
|
||||
"commandName": "MsixPackage",
|
||||
"nativeDebugging": false
|
||||
}
|
||||
}
|
||||
{
|
||||
"profiles": {
|
||||
"Windows Machine": {
|
||||
"commandName": "MsixPackage",
|
||||
"nativeDebugging": false
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 231 B After Width: | Height: | Size: 228 B |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 294 KiB After Width: | Height: | Size: 294 KiB |
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,15 +1,15 @@
|
||||
Any raw assets you want to be deployed with your application can be placed in
|
||||
this directory (and child directories). Deployment of the asset to your application
|
||||
is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
|
||||
|
||||
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
|
||||
|
||||
These files will be deployed with you package and will be accessible using Essentials:
|
||||
|
||||
async Task LoadMauiAsset()
|
||||
{
|
||||
using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
|
||||
using var reader = new StreamReader(stream);
|
||||
|
||||
var contents = reader.ReadToEnd();
|
||||
}
|
||||
Any raw assets you want to be deployed with your application can be placed in
|
||||
this directory (and child directories). Deployment of the asset to your application
|
||||
is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
|
||||
|
||||
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
|
||||
|
||||
These files will be deployed with you package and will be accessible using Essentials:
|
||||
|
||||
async Task LoadMauiAsset()
|
||||
{
|
||||
using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
|
||||
using var reader = new StreamReader(stream);
|
||||
|
||||
var contents = reader.ReadToEnd();
|
||||
}
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
@ -1,46 +1,46 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<?xaml-comp compile="true" ?>
|
||||
<ResourceDictionary
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
||||
|
||||
<!-- Note: For Android please see also Platforms\Android\Resources\values\colors.xml -->
|
||||
|
||||
<Color x:Key="Primary">#512BD4</Color>
|
||||
<Color x:Key="PrimaryDark">#ac99ea</Color>
|
||||
<Color x:Key="PrimaryDarkText">#242424</Color>
|
||||
<Color x:Key="Secondary">#DFD8F7</Color>
|
||||
<Color x:Key="SecondaryDarkText">#9880e5</Color>
|
||||
<Color x:Key="Tertiary">#2B0B98</Color>
|
||||
|
||||
<Color x:Key="White">White</Color>
|
||||
<Color x:Key="Black">Black</Color>
|
||||
<Color x:Key="Magenta">#D600AA</Color>
|
||||
<Color x:Key="MidnightBlue">#190649</Color>
|
||||
<Color x:Key="OffBlack">#1f1f1f</Color>
|
||||
|
||||
<Color x:Key="Gray100">#E1E1E1</Color>
|
||||
<Color x:Key="Gray200">#C8C8C8</Color>
|
||||
<Color x:Key="Gray300">#ACACAC</Color>
|
||||
<Color x:Key="Gray400">#919191</Color>
|
||||
<Color x:Key="Gray500">#6E6E6E</Color>
|
||||
<Color x:Key="Gray600">#404040</Color>
|
||||
<Color x:Key="Gray800">#333333</Color>
|
||||
<Color x:Key="Gray900">#212121</Color>
|
||||
<Color x:Key="Gray950">#141414</Color>
|
||||
|
||||
<SolidColorBrush x:Key="PrimaryBrush" Color="{StaticResource Primary}"/>
|
||||
<SolidColorBrush x:Key="SecondaryBrush" Color="{StaticResource Secondary}"/>
|
||||
<SolidColorBrush x:Key="TertiaryBrush" Color="{StaticResource Tertiary}"/>
|
||||
<SolidColorBrush x:Key="WhiteBrush" Color="{StaticResource White}"/>
|
||||
<SolidColorBrush x:Key="BlackBrush" Color="{StaticResource Black}"/>
|
||||
|
||||
<SolidColorBrush x:Key="Gray100Brush" Color="{StaticResource Gray100}"/>
|
||||
<SolidColorBrush x:Key="Gray200Brush" Color="{StaticResource Gray200}"/>
|
||||
<SolidColorBrush x:Key="Gray300Brush" Color="{StaticResource Gray300}"/>
|
||||
<SolidColorBrush x:Key="Gray400Brush" Color="{StaticResource Gray400}"/>
|
||||
<SolidColorBrush x:Key="Gray500Brush" Color="{StaticResource Gray500}"/>
|
||||
<SolidColorBrush x:Key="Gray600Brush" Color="{StaticResource Gray600}"/>
|
||||
<SolidColorBrush x:Key="Gray900Brush" Color="{StaticResource Gray900}"/>
|
||||
<SolidColorBrush x:Key="Gray950Brush" Color="{StaticResource Gray950}"/>
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<?xaml-comp compile="true" ?>
|
||||
<ResourceDictionary
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
||||
|
||||
<!-- Note: For Android please see also Platforms\Android\Resources\values\colors.xml -->
|
||||
|
||||
<Color x:Key="Primary">#512BD4</Color>
|
||||
<Color x:Key="PrimaryDark">#ac99ea</Color>
|
||||
<Color x:Key="PrimaryDarkText">#242424</Color>
|
||||
<Color x:Key="Secondary">#DFD8F7</Color>
|
||||
<Color x:Key="SecondaryDarkText">#9880e5</Color>
|
||||
<Color x:Key="Tertiary">#2B0B98</Color>
|
||||
|
||||
<Color x:Key="White">White</Color>
|
||||
<Color x:Key="Black">Black</Color>
|
||||
<Color x:Key="Magenta">#D600AA</Color>
|
||||
<Color x:Key="MidnightBlue">#190649</Color>
|
||||
<Color x:Key="OffBlack">#1f1f1f</Color>
|
||||
|
||||
<Color x:Key="Gray100">#E1E1E1</Color>
|
||||
<Color x:Key="Gray200">#C8C8C8</Color>
|
||||
<Color x:Key="Gray300">#ACACAC</Color>
|
||||
<Color x:Key="Gray400">#919191</Color>
|
||||
<Color x:Key="Gray500">#6E6E6E</Color>
|
||||
<Color x:Key="Gray600">#404040</Color>
|
||||
<Color x:Key="Gray800">#333333</Color>
|
||||
<Color x:Key="Gray900">#212121</Color>
|
||||
<Color x:Key="Gray950">#141414</Color>
|
||||
|
||||
<SolidColorBrush x:Key="PrimaryBrush" Color="{StaticResource Primary}"/>
|
||||
<SolidColorBrush x:Key="SecondaryBrush" Color="{StaticResource Secondary}"/>
|
||||
<SolidColorBrush x:Key="TertiaryBrush" Color="{StaticResource Tertiary}"/>
|
||||
<SolidColorBrush x:Key="WhiteBrush" Color="{StaticResource White}"/>
|
||||
<SolidColorBrush x:Key="BlackBrush" Color="{StaticResource Black}"/>
|
||||
|
||||
<SolidColorBrush x:Key="Gray100Brush" Color="{StaticResource Gray100}"/>
|
||||
<SolidColorBrush x:Key="Gray200Brush" Color="{StaticResource Gray200}"/>
|
||||
<SolidColorBrush x:Key="Gray300Brush" Color="{StaticResource Gray300}"/>
|
||||
<SolidColorBrush x:Key="Gray400Brush" Color="{StaticResource Gray400}"/>
|
||||
<SolidColorBrush x:Key="Gray500Brush" Color="{StaticResource Gray500}"/>
|
||||
<SolidColorBrush x:Key="Gray600Brush" Color="{StaticResource Gray600}"/>
|
||||
<SolidColorBrush x:Key="Gray900Brush" Color="{StaticResource Gray900}"/>
|
||||
<SolidColorBrush x:Key="Gray950Brush" Color="{StaticResource Gray950}"/>
|
||||
</ResourceDictionary>
|