Skip to content

Instantly share code, notes, and snippets.

@fluxtah
Last active February 3, 2020 19:57
Show Gist options
  • Save fluxtah/cb49b500469779753c5de34da0abff6d to your computer and use it in GitHub Desktop.
Save fluxtah/cb49b500469779753c5de34da0abff6d to your computer and use it in GitHub Desktop.
if (showNoteNames) {
Row {
repeat(7) { noteIndex ->
Container(
LayoutPadding(right = 1.dp) + LayoutSize(16.dp, 62.dp),
alignment = Alignment.BottomCenter
) {
val noteName = formatNoteName(startFromF, noteIndex, octave)
Text(text = noteName, style = TextStyle(fontSize = 8.sp))
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment