flutter_beep_new 1.2.0
flutter_beep_new: ^1.2.0 copied to clipboard
Play system beeps and tones on Android and iOS without bundling sound files. Lightweight fork of flutter_beep with modern Gradle, Kotlin, and Swift Package Manager support.
import 'package:flutter/material.dart';
import 'package:flutter_beep_new/flutter_beep_new.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@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),
),
],
),
),
),
);
}
}