libtab 0.0.13 copy "libtab: ^0.0.13" to clipboard
libtab: ^0.0.13 copied to clipboard

Flutter widgets for modelling tab notation, rendering charts of chord finger positions and tabs

example/example.md

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),
);
1
likes
160
points
17
downloads

Publisher

verified publishereighty4.tech

Weekly Downloads

Flutter widgets for modelling tab notation, rendering charts of chord finger positions and tabs

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on libtab