You have some options…
-
The Auth0ClientOptions has a Browser property. By default an instance of PlatformWebView gets passed to this. The PlatformWebView constructor has an overload which takes a
windowFactory
parameter]3.So what you can do is to create a new instance of
PlatformWebView
but specify your ownwindowFactory
which instantiates a maximized window. And then set that instance as the value for theBrowser
property. -
The second alternative is to implement your own
IBrowser
class which displays the browser window exactly the way you want to, and then pass an instance of that in theBrowser
property.