sheet_music 0.2.0 copy "sheet_music: ^0.2.0" to clipboard
sheet_music: ^0.2.0 copied to clipboard

discontinued
outdated

A Flutter Widget for Sheet Music (All Major Flat and Sharp Scales, Notes from 5 below and 5 above the bar, Treble and Bass Clef).

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:sheet_music/sheet_music.dart';

main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: SheetMusic(
        scale: "C Major",
        pitch: "C4",
        trebleClef: true,
      ),
    );
  }
}
24
likes
30
pub points
0%
popularity

Publisher

verified publisherrodydavis.com

A Flutter Widget for Sheet Music (All Major Flat and Sharp Scales, Notes from 5 below and 5 above the bar, Treble and Bass Clef).

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, tonic

More

Packages that depend on sheet_music