12 lines
495 B
Text
12 lines
495 B
Text
|
<?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="Neighbourhood.omg.lol.EphemeralWebPage"
|
||
|
BackgroundColor="{DynamicResource PageBackgroundColor}">
|
||
|
<Grid>
|
||
|
<WebView x:Name="webview"
|
||
|
Navigating="webview_Navigating"
|
||
|
VerticalOptions="Fill"
|
||
|
HorizontalOptions="Fill" />
|
||
|
</Grid>
|
||
|
</ContentPage>
|