NativeBridgeActionRunner
public protocol NativeBridgeActionRunner : Sendable
Action runner used in the NativeBridge.
-
runAction(actionName:Asynchronousarguments: webView: ) Called to run an action when triggered from the web view.
Declaration
Swift
@MainActor func runAction(actionName: String, arguments: ActionArguments, webView: WKWebView) async -> ActionResultParameters
actionNameThe action name.
argumentsThe action arguments.
webViewThe web view.
Return Value
The action result.
View on GitHub