Skip to content

Instantly share code, notes, and snippets.

@fluxtah
Last active February 4, 2020 15:27
Show Gist options
  • Save fluxtah/357a620a1bbdbda0e2941d3f957c2ec7 to your computer and use it in GitHub Desktop.
Save fluxtah/357a620a1bbdbda0e2941d3f957c2ec7 to your computer and use it in GitHub Desktop.
@Composable
fun PianoRollOctave(
startFromF: Boolean = false,
showNoteNames: Boolean = false,
octave: Int? = 0,
highlightedKeys: List<PianoKey>? = null
) {
Stack {
WhiteNotes(startFromF, octave, highlightedKeys)
BlackNotes(startFromF, octave, highlightedKeys)
if (showNoteNames) {
WhiteNoteLabels(startFromF, octave)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment