forked from vpnhood/VpnHood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.xaml
21 lines (17 loc) · 994 Bytes
/
MainPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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"
xmlns:maui="clr-namespace:VpnHood.Client.App.Maui"
x:Class="VpnHood.Client.App.Maui.MainPage">
<AbsoluteLayout x:Name="MainLayout" AbsoluteLayout.LayoutFlags="All" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
<maui:AppWebView x:Name="MainWebView" AbsoluteLayout.LayoutFlags="All" AbsoluteLayout.LayoutBounds="0,0,1,1"></maui:AppWebView>
<Image x:Name="SplashScreen" IsVisible="true"
AbsoluteLayout.LayoutBounds="0,0,1,1"
Aspect="Center"
BackgroundColor="{StaticResource Primary}"
Source="splash.png"
AbsoluteLayout.LayoutFlags="All"
VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand" />
</AbsoluteLayout>
</ContentPage>