Last active
January 7, 2022 13:43
-
-
Save tunjid/3f40a4757c05086cd50da23fc106039a to your computer and use it in GitHub Desktop.
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
private fun Flow<Action.GridSize>.gridSizeMutations(): Flow<Mutation<State>> = | |
distinctUntilChanged() | |
.map { | |
Mutation { | |
copy(gridSize = it.size) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment