Neighbourhood.omg.lol/MainPage.xaml.cs

18 lines
520 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Components.WebView;
using System.Diagnostics;
namespace Neighbourhood.omg.lol {
2024-05-30 01:06:08 +00:00
public partial class MainPage : ContentPage {
public MainPage() {
InitializeComponent();
}
private void BlazorUrlLoading(object? sender, UrlLoadingEventArgs e) {
if(e.Url.Host == "home.omg.lol" && e.Url.AbsolutePath == "/oauth/authorize") {
e.UrlLoadingStrategy = UrlLoadingStrategy.CancelLoad;
Shell.Current.GoToAsync(nameof(LoginWebViewPage));
}
}
2024-05-30 01:06:08 +00:00
}
}