flutter_midi_command 0.0.4
flutter_midi_command: ^0.0.4 copied to clipboard
A Flutter plugin for sending and receving MIDI messages between Flutter and physical and virtual MIDI devices. Wraps CoreMIDI and android.media.midi in a thin dart/flutter layer.
example/lib/main.dart
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter_midi_command/flutter_midi_command.dart';
import 'package:flutter_midi_command_example/controller.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
StreamSubscription<String> _setupSubscription;
MidiCommand _midiCommand = MidiCommand();
@override
void initState() {
super.initState();
_midiCommand.scanForBluetoothDevices();
_setupSubscription = _midiCommand.onMidiSetupChanged.listen((data) {
print("setup changed $data");
switch (data) {
case "deviceFound":
setState(() {});
break;
case "deviceOpened":
break;
default:
print("Unhandled setup change: $data");
break;
}
});
}
@override
void dispose() {
_setupSubscription.cancel();
super.dispose();
}
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: const Text('FlutterMidiCommand'),
actions: <Widget>[
IconButton(
onPressed: () {
_midiCommand.scanForBluetoothDevices();
setState(() {});
},
icon: Icon(Icons.refresh))
],
),
body: new Center(
child: FutureBuilder(
future: _midiCommand.devices,
builder: (BuildContext context, AsyncSnapshot snapshot) {
if (snapshot.hasData && snapshot.data != null) {
var devices = snapshot.data as List<MidiDevice>;
return ListView.builder(
// Let the ListView know how many items it needs to build
itemCount: devices.length,
// Provide a builder function. This is where the magic happens! We'll
// convert each item into a Widget based on the type of item it is.
itemBuilder: (context, index) {
final device = devices[index];
return ListTile(
title: Text(
device.name,
style: Theme.of(context).textTheme.headline,
),
trailing: device.type == "BLE" ? Icon(Icons.bluetooth) : null,
onTap: () {
_midiCommand.connectToDevice(device);
Navigator.of(context).push(MaterialPageRoute<Null>(
builder: (_) => ControllerPage(),
));
},
);
},
);
} else {
return new CircularProgressIndicator();
}
})),
),
);
}
}