piano_widget 1.3.0 copy "piano_widget: ^1.3.0" to clipboard
piano_widget: ^1.3.0 copied to clipboard

A new Flutter package provide a widget that show piano keyboards layout.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:piano_widget/piano_widget.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  const MyHomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    // This method is rerun every time setState is called, for instance as done
    // by the _incrementCounter method above.
    //
    // The Flutter framework has been optimized to make rerunning build methods
    // fast, so that you can just rebuild anything that needs updating rather
    // than having to individually change instances of widgets.
    return Scaffold(
      appBar: AppBar(
        // Here we take the value from the MyHomePage object that was created by
        // the App.build method, and use it to set our appbar title.
        title: const Text('Piano'),
      ),
      backgroundColor: Colors.grey,
      body: Center(
        // Center is a layout widget. It takes a single child and positions it
        // in the middle of the parent.
        child: ListView(
          padding: const EdgeInsets.all(16),
          children: [
            const Text('32 Keys start with C'),
            PianoWidget.keys32c(keyBuilder: buildKey),
            const Divider(),
            const Text('32 Keys start with F'),
            PianoWidget.keys32f(),
            const Divider(),
            const Text('36 Keys start with C'),
            PianoWidget.keys36c(),
            const Divider(),
            const Text('36 Keys start with F'),
            PianoWidget.keys36f(),
            const Divider(),
            const Text('37 Keys start with C'),
            PianoWidget.keys37c(),
            const Divider(),
            const Text('37 Keys start with F'),
            PianoWidget.keys37f(),
            const Divider(),
            const Text('49 Keys'),
            PianoWidget.keys49(),
            const Divider(),
            const Text('54 Keys'),
            PianoWidget.keys54(),
            const Divider(),
            const Text('61 Keys'),
            PianoWidget.keys61(),
            const Divider(),
            const Text('76 Keys'),
            PianoWidget.keys76(),
            const Divider(),
            const Text('88 Keys'),
            PianoWidget.keys88(),
          ],
        ),
      ),
    );
  }

  Widget buildKey(double width, double height, MapEntry<String, int> pitch) {
    return MyKeyWidget(width: width, height: height, pitch: pitch);
  }
}

class MyKeyWidget extends StatefulWidget {
  final double width;
  final double height;
  final MapEntry<String, int> pitch;

  const MyKeyWidget({
    required this.width,
    required this.height,
    required this.pitch,
    Key? key,
  }) : super(key: key);

  @override
  State<MyKeyWidget> createState() => _MyKeyWidgetState();
}

class _MyKeyWidgetState extends State<MyKeyWidget> {
  bool isPressed = false;

  @override
  Widget build(BuildContext context) {
    return GestureDetector(
      onTapDown: (_) {
        setState(() {
          isPressed = true;
        });
      },
      onTapUp: (_) {
        setState(() {
          isPressed = false;
        });
      },
      onTapCancel: () {
        setState(() {
          isPressed = false;
        });
      },
      child: Container(
        width: widget.width,
        height: widget.height,
        decoration: BoxDecoration(
          color: isPressed
              ? Colors.red
              : (widget.pitch.key.contains('#') ? Colors.black : Colors.white),
          borderRadius: const BorderRadius.only(
            bottomLeft: Radius.circular(2),
            bottomRight: Radius.circular(2),
          ),
        ),
      ),
    );
  }
}
9
likes
140
pub points
40%
popularity

Publisher

verified publisherdemen.org

A new Flutter package provide a widget that show piano keyboards layout.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on piano_widget