had a quick look over doodle.. looks neat and less...
# doodle
n
had a quick look over doodle.. looks neat and less overwhelming than compose for the relatively "simple" things i want to do and wanted to ask.. can i make input and output for existing logic that uses Stateflows / Flows ? (Lists and individual values) i have not found anything related to that in the docs on a first quick scan ie. can doodle re-render a list or text, button, etc when the value changes or would i have to build that from scratch? MY app is inteded to control some external programs with OSC messages, as it is right now i control it using TouchOSC (external drag and drop UI builder that sends OSC and MIDI).. but i would like to make the UI part less of a hassle to manage as it grows in complexity and size of elements
n
existing Views like buttons and lists are responsive to changes in their underlying models, and do rerender automatically as a result. this tutorial shows how to bind dynamically loading image urls to a
DynamicList
for example. you can also ensure auto-rerender to any property change for custom Views with the renderProperty delegate. a
renderPropeety
will cause its
View
to repaint whenever the property changes value. this means you could feed new values from your flow changes into the property and have the view rerender automatically. let me know if i understood and answered your question. and please don’t hesitate to share any feedback or ask any other questions as you play around with Doodle.
n
cool, i will play around with this soon
👍 1