Last active
February 17, 2020 10:32
-
-
Save fluxtah/7b752262c65a0925c029e0ddbf4fe8fb 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 Fretboard() { | |
Column { | |
Container { | |
Stack { | |
Row(modifier = LayoutWidth.Fill) { | |
// Fretwire + Nut layer | |
} | |
Column(modifier = LayoutWidth.Fill) { | |
// String layer | |
} | |
FretMarkerLayer(fretRange, from, toFret, markers, scale) | |
} | |
} | |
FretNumberGutter(fretRange, from, toFret, scale) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment