12 lines
313 B
Dart
12 lines
313 B
Dart
import 'package:just_audio/just_audio.dart';
|
|
|
|
/// Shared app-wide audio player.
|
|
///
|
|
/// `just_audio_background` supports only one `AudioPlayer` instance, so all
|
|
/// playback surfaces should reuse this singleton.
|
|
class AppAudioPlayer {
|
|
AppAudioPlayer._();
|
|
|
|
static final AudioPlayer instance = AudioPlayer();
|
|
}
|