Skip to content

Commit 3991cc9

Browse files
committed
Stable Version!
1 parent 698d217 commit 3991cc9

File tree

340 files changed

+8405
-4198
lines changed

Some content is hidden

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

340 files changed

+8405
-4198
lines changed

AboutMe.xaml

Lines changed: 101 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
x:Class="MauiApp2.AboutMe"
55
BackgroundColor="#070F2B"
66
Title="About Me!">
7+
8+
<StackLayout>
9+
710
<VerticalStackLayout>
811
<Label
912
Text="Hiya!"
@@ -41,14 +44,106 @@ HorizontalOptions="Center" />
4144
VerticalOptions="Center"
4245
HorizontalOptions="Center" />
4346

44-
<Image
45-
VerticalOptions="Center"
46-
HorizontalOptions="Center"
47-
WidthRequest="250"
48-
Source="qq.png"
49-
/>
47+
5048

49+
5150

5251

5352
</VerticalStackLayout>
53+
54+
<HorizontalStackLayout
55+
Padding="1"
56+
VerticalOptions="Center"
57+
HorizontalOptions="Center"
58+
>
59+
60+
<Label
61+
VerticalOptions="Center"
62+
HorizontalOptions="Center"
63+
FontFamily="Fortnitee"
64+
FontSize="19"
65+
Text="My "
66+
>
67+
68+
</Label>
69+
70+
<Label
71+
VerticalOptions="Center"
72+
FontFamily="Fortnite"
73+
FontSize="22"
74+
HorizontalOptions="Center"
75+
TextColor="LightGreen"
76+
Text=" Github" >
77+
78+
<Label.GestureRecognizers>
79+
80+
<TapGestureRecognizer
81+
82+
Tapped="OnClicked"
83+
84+
/>
85+
</Label.GestureRecognizers>
86+
87+
88+
</Label>
89+
90+
91+
92+
</HorizontalStackLayout>
93+
94+
<HorizontalStackLayout
95+
Padding="1"
96+
VerticalOptions="Center"
97+
HorizontalOptions="Center"
98+
>
99+
100+
<Label
101+
VerticalOptions="Center"
102+
HorizontalOptions="Center"
103+
FontFamily="Fortnitee"
104+
FontSize="19"
105+
Text="My "
106+
>
107+
108+
</Label>
109+
110+
<Label
111+
VerticalOptions="Center"
112+
FontFamily="Fortnite"
113+
FontSize="22"
114+
HorizontalOptions="Center"
115+
TextColor="red"
116+
Text=" YouTube" >
117+
118+
<Label.GestureRecognizers>
119+
120+
<TapGestureRecognizer
121+
122+
Tapped="OnClickedd"
123+
124+
/>
125+
</Label.GestureRecognizers>
126+
127+
128+
</Label>
129+
130+
131+
132+
</HorizontalStackLayout>
133+
134+
135+
<VerticalStackLayout
136+
Padding="9"
137+
>
138+
<Image
139+
140+
VerticalOptions="Center"
141+
HorizontalOptions="Center"
142+
WidthRequest="250"
143+
Source="qq.png"
144+
145+
/>
146+
</VerticalStackLayout>
147+
</StackLayout>
148+
54149
</ContentPage>

AboutMe.xaml.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,17 @@ public AboutMe()
66
{
77
InitializeComponent();
88
}
9+
10+
private async void OnClicked(object sender, TappedEventArgs e)
11+
{
12+
await Launcher.OpenAsync("https://github.com/kinguser981");
13+
}
14+
15+
private async void OnClickedd(object sender, TappedEventArgs e)
16+
{
17+
await Launcher.OpenAsync("https://www.youtube.com/@help-me-sam");
18+
}
19+
20+
21+
922
}

AppShell.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</FlyoutItem>
3939

4040

41-
<FlyoutItem Title="Cheak for New Version" Icon="rr.png">
41+
<FlyoutItem Title="Check for New Version" Icon="rr.png">
4242
<ShellContent ContentTemplate="{DataTemplate local:CheakNewVersion}" />
4343
</FlyoutItem>
4444

CheakNewVersion.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ FontFamily="Fortnitee"
4848
HorizontalOptions="Center"
4949
FontFamily="Fortnitee"
5050
FontSize="19"
51-
Text="To Download New "
51+
Text="To Download New "
5252
>
5353

5454
</Label>

CheakNewVersion.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public partial class CheakNewVersion : ContentPage
1111
// === CONFIGURATION ===
1212
private const string RepoOwner = "kinguser981";
1313
private const string RepoName = "Fortnite_DNS";
14-
private static readonly Version LocalVersion = new Version("1.1.0");
14+
private static readonly Version LocalVersion = new Version("2.0.0");
1515
// =====================
1616

1717
public CheakNewVersion()

MauiApp2.csproj.user

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<IsFirstTimeProjectOpen>False</IsFirstTimeProjectOpen>
55
<ActiveDebugFramework>net10.0-windows10.0.19041.0</ActiveDebugFramework>
66
<ActiveDebugProfile>Windows Machine</ActiveDebugProfile>
7-
<SelectedPlatformGroup>PhysicalDevice</SelectedPlatformGroup>
7+
<SelectedPlatformGroup>Emulator</SelectedPlatformGroup>
88
</PropertyGroup>
99
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net10.0-android|AnyCPU'">
1010
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
3.5 KB
Binary file not shown.
288 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)