I have a HybridWebView
embedded in one of the Pages
of my app. If I visit a website and sign in, the HybridWebView
stores the relevant information and whenever I reopen the same website I am still signed in, even after closing and reopening the app.
But when I open the same website from the same Page
using await Browser.OpenAsync(Url, BrowserLaunchMode.SystemPreferred);
this time I need to log in again.
Is it possible to share the session information between these 2 WebViews
or better globally within the app?