mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
41 lines
1.0 KiB
Dart
41 lines
1.0 KiB
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter_ringtone_player/flutter_ringtone_player.dart';
|
|
import 'package:just_audio/just_audio.dart';
|
|
|
|
import 'package:fluffychat/utils/platform_infos.dart';
|
|
|
|
class UserMediaManager {
|
|
factory UserMediaManager() {
|
|
return _instance;
|
|
}
|
|
|
|
UserMediaManager._internal();
|
|
|
|
static final UserMediaManager _instance = UserMediaManager._internal();
|
|
|
|
AudioPlayer? _assetsAudioPlayer;
|
|
|
|
Future<void> startRingingTone() async {
|
|
if (PlatformInfos.isMobile) {
|
|
await FlutterRingtonePlayer.playRingtone(volume: 80);
|
|
} else if ((kIsWeb || PlatformInfos.isMacOS) &&
|
|
_assetsAudioPlayer != null) {
|
|
const path = 'assets/sounds/phone.ogg';
|
|
final player = _assetsAudioPlayer = AudioPlayer();
|
|
player.setAsset(path);
|
|
player.play();
|
|
}
|
|
return;
|
|
}
|
|
|
|
Future<void> stopRingingTone() async {
|
|
if (PlatformInfos.isMobile) {
|
|
await FlutterRingtonePlayer.stop();
|
|
}
|
|
await _assetsAudioPlayer?.stop();
|
|
_assetsAudioPlayer = null;
|
|
return;
|
|
}
|
|
}
|