Neighbourhood.omg.lol/XamlComponents/MainPage.xaml.cs

18 lines
495 B
C#
Raw Permalink Normal View History

2024-07-01 23:19:37 +00:00
using Microsoft.AspNetCore.Components.WebView;
namespace Neighbourhood.omg.lol {
2024-05-30 01:06:08 +00:00
public partial class MainPage : ContentPage {
2024-05-30 01:06:08 +00:00
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
}
}