Skip to content

Instantly share code, notes, and snippets.

@tunjid
Last active January 7, 2022 13:43
Show Gist options
  • Save tunjid/3f40a4757c05086cd50da23fc106039a to your computer and use it in GitHub Desktop.
Save tunjid/3f40a4757c05086cd50da23fc106039a to your computer and use it in GitHub Desktop.
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