This. What is (and am I) missing here? Thanks so m...
# announcements
f
This. What is (and am I) missing here? Thanks so much ❤️
m
Use
val
. The lazy delegate only provides a
get
method.
4
If you need a
var
, you don't need the delegate. You can just do
var button0: Button? = null
, and then set it later.
g
Button
->
Button?
👍 1
m
Fixed
f
Thanks guys. Very clear, that was an amazing help!😀