Yeah, most of the time you end up with less code, ...
# tornadofx
e
Yeah, most of the time you end up with less code, and it becomes more readable and easier to understand the flow 🙂 I usually manipulate the UI elements only in the View. You can think of the View as a container for the UI elements and any UI logic, like reacting to events from the UI and manipulating the UI based on incoming data changes. This encapsulates the UI logic and prevents leaking of UI details outside of the View.