Last active
February 4, 2020 15:27
-
-
Save fluxtah/357a620a1bbdbda0e2941d3f957c2ec7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@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