Skip to content

Instantly share code, notes, and snippets.

@afrishberg
Created January 14, 2021 21:07
Show Gist options
  • Save afrishberg/cf23d5779852784f4b27dfa083238845 to your computer and use it in GitHub Desktop.
Save afrishberg/cf23d5779852784f4b27dfa083238845 to your computer and use it in GitHub Desktop.
flip rotation
private fun flipRotation(adapter: Adapter) {
val newList = adapter.data.mapIndexed { i, data ->
if (i == 0) data.copy(rotated = data.rotated.not()) else data
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment