AndroidViewBlock
class AndroidViewBlock<Presentation : View, Data : Any>(factory: (Context) -> Presentation, update: suspend (Presentation, Data) -> Unit) : ViewBlock<Data>
A ViewBlock implementation for Android views.
Parameters
Presentation
The type of view this block will produce.
Data
The type of the data this block will accept to update the view.