reconcile

inline fun reconcile(crossinline block: T.() -> Unit)

Unconditionally schedules block to run against the typed component on every composition. Prefer set/update when a single changing value drives the update; reach for reconcile only when those are insufficient.

Parameters

block

runs against the component while the composition applies its changes.

See also

Updater.reconcile