libtab 0.0.13
libtab: ^0.0.13 copied to clipboard
Flutter widgets for modelling tab notation, rendering charts of chord finger positions and tabs
Libtab musical charts #
Display a measure of notes #
MeasureDisplay(
Measure.fromNoteList([
Note(2, 0),
Note(1, 0),
Note(5, 0),
Note(2, 0),
Note(1, 0),
Note(5, 0),
Note(2, 0),
Note(1, 0),
]),
tabContext: TabContext.forBrightness(Brightness.light),
instrument: Instrument.guitar,
);
Display a chord chart #
ChordChartDisplay(
chord: ChordNoteSet(Instrument.guitar, Chord.em),
tabContext: TabContext.forBrightness(Brightness.light),
);