Last active
February 3, 2020 19:57
-
-
Save fluxtah/cb49b500469779753c5de34da0abff6d 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
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