LaunchMode
Inherits: Enum
Preferred launch mode for opening a URL.
Properties
-
EXTERNAL_APPLICATION–Pass the URL to another application to handle.
-
EXTERNAL_NON_BROWSER_APPLICATION–Pass the URL to a non-browser application to handle.
-
IN_APP_BROWSER_VIEW–Load the URL inside an in-app browser view (e.g., custom tabs).
-
IN_APP_WEB_VIEW–Load the URL inside an in-app web view.
-
PLATFORM_DEFAULT–Platform decides how to open the URL.
Properties#
EXTERNAL_APPLICATION = 'externalApplication'
class-attribute
instance-attribute
#
Pass the URL to another application to handle.
EXTERNAL_NON_BROWSER_APPLICATION = 'externalNonBrowserApplication'
class-attribute
instance-attribute
#
Pass the URL to a non-browser application to handle.
IN_APP_BROWSER_VIEW = 'inAppBrowserView'
class-attribute
instance-attribute
#
Load the URL inside an in-app browser view (e.g., custom tabs).
IN_APP_WEB_VIEW = 'inAppWebView'
class-attribute
instance-attribute
#
Load the URL inside an in-app web view.
PLATFORM_DEFAULT = 'platformDefault'
class-attribute
instance-attribute
#
Platform decides how to open the URL.