flutter_beep 1.0.0 flutter_beep: ^1.0.0 copied to clipboard
A very lite module to play system sounds and beep for flutter apps (no sound files)
import 'package:flutter/material.dart';
import 'package:flutter_beep/flutter_beep.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Flutter Beep Plugin example app'),
),
body: Center(
child: Column(
children: <Widget>[
ElevatedButton(
child: Text("Beep Success"),
onPressed: () => FlutterBeep.beep(),
),
ElevatedButton(
child: Text("Beep Fail"),
onPressed: () => FlutterBeep.beep(false),
),
ElevatedButton(
child: Text("Beep Android Custom"),
onPressed: () => FlutterBeep.playSysSound(
AndroidSoundIDs.TONE_CDMA_ABBR_ALERT),
),
ElevatedButton(
child: Text("Beep something"),
onPressed: () => FlutterBeep.playSysSound(41),
),
ElevatedButton(
child: Text("Beep iOS Custom"),
onPressed: () =>
FlutterBeep.playSysSound(iOSSoundIDs.AudioToneBusy),
),
],
),
),
),
);
}
}