2024-07-01 23:19:37 +00:00
|
|
|
|
using Microsoft.AspNetCore.Components.WebView;
|
2024-05-31 13:16:09 +00:00
|
|
|
|
|
|
|
|
|
namespace Neighbourhood.omg.lol {
|
2024-05-30 01:06:08 +00:00
|
|
|
|
public partial class MainPage : ContentPage {
|
2024-06-01 04:38:12 +00:00
|
|
|
|
|
2024-05-30 01:06:08 +00:00
|
|
|
|
public MainPage() {
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2024-05-31 13:16:09 +00:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|