-
-
Save MaxMichel2/7f421473c46407b3fcd08cef80fdbaaf to your computer and use it in GitHub Desktop.
The actual implementation of the ViewEffect for the ForYouScreen (from the Now In Android application)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Immutable | |
sealed class ForYouEffect : Reducer.ViewEffect { | |
data class NavigateToTopic(val topicId: String) : ForYouEffect() | |
data class NavigateToNews(val newsUrl: String) : ForYouEffect() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment