Question: Custom Modifier What’s the difference be...
# compose
t
Question: Custom Modifier What’s the difference between these two approaches?
this
vs
then(this)
🤔
j
I think both are the same, the infix function just call
then
under the hood, but I can't check sources now
n
then
is supposed to be used without
this
, so
then(Modifier.border…)
. “this then this” looks like an error.
☝🏽 1
☝🏾 1
👍 1