I have a feedback screen. The themes for this form are loaded with a separate query. I understand correctly that when using any state manager, in this case Cubit I have to give up setState() and create 3 Cubit:
- Cubit to get a list of themes (States: Download/Data/Error).
- Cubit to select themes (States: theme selected).
- Cubit to send messages (States: send/send/error).
If you do everything as I wrote above (create 3 cubit) then wouldn’t it be redundant work?