hello everyone,
first of all sorry to bother you with this rather basic, general MVI question 🙈
i just started my first "MVI project" and try to learn by reading sources from example apps like the
todo-app and try to use the frameworks that are used/mentioned there. (thx a lot
@Arkadii Ivanov for all your nice work, btw!) but i somehow do not understand how MVI is meant to work...
i mean, compose ui needs state change for recompose. but at the same time, time consuming intents/actions should be done off the UI thread. and the new state is returned when the intent is finished, right (circulation/one direction)? so does that mean that the UI won't change (e.g. toggle switch) until the new state was returned from the server/db?