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