Portal
A class representing a Portal that contains information about the web content to load and any associated plugins used by the Portal. It is discouraged to use this class directly to create a Portal and instead use PortalBuilder or PortalManager to construct a new instance.
Example usage (kotlin):
val name: String = "Hello World"
val portal: Portal = Portal(name)
Content copied to clipboard
Example usage (java):
String name = "Hello World";
Portal portal = new Portal(name);
Content copied to clipboard
Constructors
Functions
Link copied to clipboard
Add multiple AssetMap instances to be loaded with this Portal.
Link copied to clipboard
Add a Capacitor Plugin instance to be loaded with this Portal.
Link copied to clipboard
Add multiple Capacitor Plugin instances to be loaded with this Portal.
Link copied to clipboard
Add multiple Capacitor Plugin to be loaded with this Portal.
Link copied to clipboard
Sets the initial context to pass to the web view.
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The PortalFragment type used by a PortalView when using Portals directly in Android layouts/XML.