Renderer

fun interface Renderer<in TModel : Any, out TState : ViewState<*, *>>

Interface for transforming the current Loop model into a new view state.

For example:

class ScoreScreenRenderer : Renderer<ScoreScreenModel, ScoreScreenState> {
fun renderState(model: ScoreScreenModel) = ScoreScreenState(
playerName = model.user.nickname,
score = model.score.roundToInt().toString(),
)
}

Parameters

TModel

the type of the Loop model

TState

the concrete type of the resulting ViewState

Functions

Link copied to clipboard
abstract fun renderState(model: TModel): TState