flutter guitar tabs
flutter_guitar_tabs is a package to show guitar tabs like the one below:
how to use the package
the widget tabwidget
receives two parameters, name
and tabs
.
name
is the name displayed on the top.
tabs
is a list of strings containing up to 6 numbers, or x
, with seperating spaces.
as an example:
"x 0 0 2 3 1"
"x 5 7 7 6 5"
"10 12 12 10 10 10"
example use
this is an example of how to use the package:
tabwidget(
name: 'dm',
tabs: ["x 0 0 2 3 1", "x 5 7 7 6 5", "10 12 12 10 10 10"],
),
pr’s are welcome.
Comments are closed.