Tgo1014
modifier
.then(modifier)
Stylianos Gakis
then
.moreModifiersInTheChain() .then( if (someCondition) { Modifier.clickable() } else { Modifier } ) .moreModifiersInTheChain()
apply
val x = 5.apply { this + 1 } println(x) // <-- prints (5)
A modern programming language that makes developers happier.