yep. i used to `ObservableField` everywhere :sligh...
# android
d
yep. i used to
ObservableField
everywhere 🙂 btw i hope they will add some delegated properties support for
ObservableField
, so we can use fields as
Copy code
textLabel = "hello world"
instead of
Copy code
textLabel.set("hello world")
😊 1
☝️ 3
d
deviant: You could do that with operator overloading pretty easily, no?
a
can you overload the assignment operator?
I mean, without property delegates
d
No, I just checked and you can't 😞
d
dont think so. databinding lib should support delegated properties fields too. if i try to bind it in xml layout, the binding will just don't work
we can bind it as setter/getter pair though
a
```