Regarding properties/observable stuff in tornadofx...
# tornadofx
s
Regarding properties/observable stuff in tornadofx. Is it typical to just use the obserable types in your domain model? Doesnt that couple it to tornadofx? Right now i have a domain model free of tfx imports, that has a somewhat kotlinized version of ChangeListeners. Then i have a ViewModel type class that can take in the domain model and updates itself upon changes to the model. And of course the view is bound to the viewmodel as needed. does that sound right or am i making it more complicated?