ViewManagerDelegate

This is an interface that must be implemented by classes that wish to take over the responsibility of setting properties of all views managed by the view manager and executing view commands.

Parameters

the type of the view supported by this delegate

Inheritors

Functions

Link copied to clipboard
@JvmName(name = "receiveCommand")
open fun javaCompat_receiveCommand(view: T, commandName: String?, args: ReadableArray?)
Link copied to clipboard
@JvmName(name = "setProperty")
open fun javaCompat_setProperty(view: T, propName: String?, value: Any?)
Link copied to clipboard
@JvmName(name = "kotlinCompat$receiveCommand")
abstract fun receiveCommand(view: T, commandName: String, args: ReadableArray?)

Executes a command from JS to the view

Link copied to clipboard
@JvmName(name = "kotlinCompat$setProperty")
abstract fun setProperty(view: T, propName: String, value: Any?)

Sets a property on a view managed by this view manager.