Join Slack
Powered by
One thing that I really like about my current MVI ...
# redux
a
andreworobator
08/28/2019, 1:47 PM
One thing that I really like about my current MVI implementation is that I have a sealed subclass of Action for each screen. For example
sealed class LoginScreenAction: Action
. This allows me to get compile errors if I use when statements as expressions and add a new
LoginScreenAction
subclass
Open in Slack
Previous
Next