Skip to content

Commit 1336056

Browse files
committed
Before stream
1 parent 9d7c8bc commit 1336056

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1529
-0
lines changed

sessions/Season-06/0604/README.md

Lines changed: 499 additions & 0 deletions
Large diffs are not rendered by default.
46.6 KB
Loading
Loading
Loading
12.3 KB
Loading
488 KB
Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project>
2+
<PropertyGroup>
3+
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-ios'">14.2</SupportedOSPlatformVersion>
4+
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-maccatalyst'">14.0</SupportedOSPlatformVersion>
5+
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-android'">21.0</SupportedOSPlatformVersion>
6+
<SupportedOSPlatformVersion Condition="$(TargetFramework.Contains('-windows'))">10.0.17763.0</SupportedOSPlatformVersion>
7+
<TargetPlatformMinVersion Condition="$(TargetFramework.Contains('-windows'))">10.0.17763.0</TargetPlatformMinVersion>
8+
</PropertyGroup>
9+
</Project>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Project>
2+
<ItemGroup>
3+
<PackageReference Include="System.Text.Json" Version="6.0.0" />
4+
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.0.0" />
5+
</ItemGroup>
6+
7+
<ItemGroup Condition="$(TargetFramework.Contains('-windows'))">
8+
<!-- Required - WinUI does not yet have buildTransitive for everything -->
9+
</ItemGroup>
10+
</Project>
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31611.283
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MonkeyFinder", "MonkeyFinder\MonkeyFinder.csproj", "{C60F2B1C-790E-4432-A719-52182A333ADE}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{393B8F30-F402-46A9-B209-8C71897A3416}"
9+
ProjectSection(SolutionItems) = preProject
10+
..\Directory.build.props = ..\Directory.build.props
11+
..\Directory.build.targets = ..\Directory.build.targets
12+
README.md = README.md
13+
EndProjectSection
14+
EndProject
15+
Global
16+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
17+
Debug|Any CPU = Debug|Any CPU
18+
Release|Any CPU = Release|Any CPU
19+
EndGlobalSection
20+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21+
{C60F2B1C-790E-4432-A719-52182A333ADE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{C60F2B1C-790E-4432-A719-52182A333ADE}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{C60F2B1C-790E-4432-A719-52182A333ADE}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
24+
{C60F2B1C-790E-4432-A719-52182A333ADE}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{C60F2B1C-790E-4432-A719-52182A333ADE}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{C60F2B1C-790E-4432-A719-52182A333ADE}.Release|Any CPU.Deploy.0 = Release|Any CPU
27+
EndGlobalSection
28+
GlobalSection(SolutionProperties) = preSolution
29+
HideSolutionNode = FALSE
30+
EndGlobalSection
31+
GlobalSection(ExtensibilityGlobals) = postSolution
32+
SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572}
33+
EndGlobalSection
34+
EndGlobal
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4+
xmlns:local="clr-namespace:MonkeyFinder"
5+
x:Class="MonkeyFinder.App">
6+
<Application.Resources>
7+
<ResourceDictionary>
8+
<Color x:Key="Primary">#FFC107</Color>
9+
<Color x:Key="PrimaryDark">#FFA000</Color>
10+
<Color x:Key="Accent">#00BCD4</Color>
11+
12+
<Color x:Key="LightBackground">#FAF9F8</Color>
13+
<Color x:Key="DarkBackground">Black</Color>
14+
15+
<Style TargetType="Page" ApplyToDerivedTypes="True">
16+
<Setter Property="BackgroundColor"
17+
Value="{StaticResource LightBackground}" />
18+
</Style>
19+
20+
<Style ApplyToDerivedTypes="True" TargetType="NavigationPage">
21+
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource LightBackground}, Dark={StaticResource DarkBackground}}" />
22+
<Setter Property="BarBackgroundColor" Value="{StaticResource Primary}" />
23+
<Setter Property="BarTextColor" Value="White" />
24+
</Style>
25+
26+
<Style TargetType="Label" x:Key="BaseLabel">
27+
<Setter Property="FontFamily" Value="OpenSansRegular" />
28+
<Setter Property="TextColor" Value="#1F1F1F" />
29+
</Style>
30+
31+
<Style x:Key="MicroLabel" BasedOn="{StaticResource BaseLabel}" TargetType="Label">
32+
<Setter Property="FontSize" Value="10"/>
33+
</Style>
34+
35+
<Style x:Key="SmallLabel" BasedOn="{StaticResource BaseLabel}" TargetType="Label">
36+
<Setter Property="FontSize" Value="12"/>
37+
</Style>
38+
39+
<Style x:Key="MediumLabel" BasedOn="{StaticResource BaseLabel}" TargetType="Label">
40+
<Setter Property="FontSize" Value="16"/>
41+
</Style>
42+
43+
<Style x:Key="LargeLabel" BasedOn="{StaticResource BaseLabel}" TargetType="Label">
44+
<Setter Property="FontSize" Value="20"/>
45+
</Style>
46+
47+
<Style TargetType="RefreshView" ApplyToDerivedTypes="True">
48+
<Setter Property="RefreshColor" Value="{StaticResource Primary}" />
49+
</Style>
50+
51+
<Style x:Key="ButtonOutline" TargetType="Button">
52+
<Setter Property="Background" Value="{StaticResource LightBackground}"/>
53+
<Setter Property="TextColor" Value="{StaticResource Primary}"/>
54+
<Setter Property="BorderColor" Value="{StaticResource Primary}"/>
55+
<Setter Property="BorderWidth" Value="2"/>
56+
<Setter Property="HeightRequest" Value="40"/>
57+
<Setter Property="CornerRadius" Value="20"/>
58+
</Style>
59+
<Style x:Key="CardView" TargetType="Frame">
60+
<Setter Property="BorderColor" Value="#DDDDDD"/>
61+
<Setter Property="HasShadow" Value="{OnPlatform iOS=false, MacCatalyst=false, Default=true}"/>
62+
<Setter Property="Padding" Value="0"/>
63+
<Setter Property="Background" Value="{StaticResource LightBackground}"/>
64+
<Setter Property="CornerRadius" Value="10"/>
65+
<Setter Property="IsClippedToBounds" Value="True"/>
66+
</Style>
67+
</ResourceDictionary>
68+
</Application.Resources>
69+
</Application>

0 commit comments

Comments
 (0)