2024-09-08 14:43:01 +00:00
|
|
|
import 'dart:math';
|
|
|
|
|
2024-06-01 13:39:28 +00:00
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
2024-09-08 14:43:01 +00:00
|
|
|
import 'package:chewie/chewie.dart';
|
2024-05-18 14:23:36 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2024-07-29 09:56:36 +00:00
|
|
|
import 'package:flutter_animate/flutter_animate.dart';
|
2024-09-07 09:45:44 +00:00
|
|
|
import 'package:gap/gap.dart';
|
2024-05-20 15:39:23 +00:00
|
|
|
import 'package:get/get.dart';
|
2024-09-08 14:43:01 +00:00
|
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
import 'package:just_audio/just_audio.dart';
|
2024-05-18 14:23:36 +00:00
|
|
|
import 'package:solian/models/attachment.dart';
|
2024-06-01 13:39:28 +00:00
|
|
|
import 'package:solian/platform.dart';
|
2024-09-08 14:43:01 +00:00
|
|
|
import 'package:solian/providers/durations.dart';
|
2024-05-18 14:23:36 +00:00
|
|
|
import 'package:solian/services.dart';
|
2024-08-06 11:39:07 +00:00
|
|
|
import 'package:solian/widgets/sized_container.dart';
|
2024-05-27 15:07:01 +00:00
|
|
|
import 'package:url_launcher/url_launcher_string.dart';
|
2024-09-08 14:43:01 +00:00
|
|
|
import 'package:video_player/video_player.dart';
|
2024-05-18 14:23:36 +00:00
|
|
|
|
2024-05-27 15:07:01 +00:00
|
|
|
class AttachmentItem extends StatefulWidget {
|
2024-05-25 16:11:00 +00:00
|
|
|
final String parentId;
|
2024-05-18 14:23:36 +00:00
|
|
|
final Attachment item;
|
2024-05-20 16:02:39 +00:00
|
|
|
final bool showBadge;
|
|
|
|
final bool showHideButton;
|
2024-08-16 13:06:50 +00:00
|
|
|
final bool autoload;
|
2024-05-20 16:02:39 +00:00
|
|
|
final BoxFit fit;
|
2024-05-20 15:39:23 +00:00
|
|
|
final String? badge;
|
2024-05-20 16:02:39 +00:00
|
|
|
final Function? onHide;
|
2024-05-18 14:23:36 +00:00
|
|
|
|
2024-05-20 15:39:23 +00:00
|
|
|
const AttachmentItem({
|
|
|
|
super.key,
|
2024-05-25 16:11:00 +00:00
|
|
|
required this.parentId,
|
2024-05-20 15:39:23 +00:00
|
|
|
required this.item,
|
|
|
|
this.badge,
|
2024-05-20 16:02:39 +00:00
|
|
|
this.fit = BoxFit.cover,
|
|
|
|
this.showBadge = true,
|
|
|
|
this.showHideButton = true,
|
2024-08-16 13:06:50 +00:00
|
|
|
this.autoload = false,
|
2024-05-20 16:02:39 +00:00
|
|
|
this.onHide,
|
2024-05-20 15:39:23 +00:00
|
|
|
});
|
2024-05-18 14:23:36 +00:00
|
|
|
|
2024-05-27 15:07:01 +00:00
|
|
|
@override
|
|
|
|
State<AttachmentItem> createState() => _AttachmentItemState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _AttachmentItemState extends State<AttachmentItem> {
|
2024-05-18 14:23:36 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-05-27 15:07:01 +00:00
|
|
|
switch (widget.item.mimetype.split('/').first) {
|
|
|
|
case 'image':
|
2024-07-06 10:35:43 +00:00
|
|
|
return _AttachmentItemImage(
|
|
|
|
parentId: widget.parentId,
|
|
|
|
item: widget.item,
|
|
|
|
badge: widget.badge,
|
|
|
|
fit: widget.fit,
|
|
|
|
showBadge: widget.showBadge,
|
|
|
|
showHideButton: widget.showHideButton,
|
|
|
|
onHide: widget.onHide,
|
2024-05-27 15:07:01 +00:00
|
|
|
);
|
|
|
|
case 'video':
|
2024-08-16 13:06:50 +00:00
|
|
|
return _AttachmentItemVideo(
|
|
|
|
item: widget.item,
|
|
|
|
autoload: widget.autoload,
|
|
|
|
);
|
2024-09-08 14:43:01 +00:00
|
|
|
case 'audio':
|
|
|
|
return _AttachmentItemAudio(
|
|
|
|
item: widget.item,
|
|
|
|
autoload: widget.autoload,
|
|
|
|
);
|
2024-05-27 15:07:01 +00:00
|
|
|
default:
|
|
|
|
return Center(
|
|
|
|
child: Container(
|
|
|
|
constraints: const BoxConstraints(
|
|
|
|
maxWidth: 280,
|
2024-05-20 15:39:23 +00:00
|
|
|
),
|
2024-05-27 15:07:01 +00:00
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
|
|
|
const Icon(Icons.file_present, size: 32),
|
2024-09-07 09:45:44 +00:00
|
|
|
const Gap(6),
|
2024-05-27 15:07:01 +00:00
|
|
|
Text(
|
|
|
|
widget.item.mimetype,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 12,
|
|
|
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
2024-09-07 09:45:44 +00:00
|
|
|
const Gap(2),
|
2024-05-27 15:07:01 +00:00
|
|
|
Text(
|
|
|
|
widget.item.alt,
|
|
|
|
style: const TextStyle(fontSize: 13),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
2024-09-07 09:45:44 +00:00
|
|
|
const Gap(12),
|
2024-05-27 15:07:01 +00:00
|
|
|
TextButton.icon(
|
|
|
|
icon: const Icon(Icons.launch),
|
|
|
|
label: Text('openInBrowser'.tr),
|
|
|
|
style: const ButtonStyle(
|
|
|
|
visualDensity: VisualDensity(vertical: -2, horizontal: -4),
|
|
|
|
),
|
2024-05-20 16:02:39 +00:00
|
|
|
onPressed: () {
|
2024-05-27 15:07:01 +00:00
|
|
|
launchUrlString(
|
2024-07-16 11:46:53 +00:00
|
|
|
ServiceFinder.buildUrl(
|
2024-07-29 09:56:36 +00:00
|
|
|
'files',
|
2024-08-18 14:51:52 +00:00
|
|
|
'/attachments/${widget.item.rid}',
|
2024-07-29 09:56:36 +00:00
|
|
|
),
|
2024-05-27 15:07:01 +00:00
|
|
|
);
|
2024-05-20 16:02:39 +00:00
|
|
|
},
|
2024-05-20 15:39:23 +00:00
|
|
|
),
|
2024-05-27 15:07:01 +00:00
|
|
|
],
|
2024-05-20 15:39:23 +00:00
|
|
|
),
|
2024-05-27 15:07:01 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2024-07-06 10:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class _AttachmentItemImage extends StatelessWidget {
|
|
|
|
final String parentId;
|
|
|
|
final Attachment item;
|
|
|
|
final bool showBadge;
|
|
|
|
final bool showHideButton;
|
|
|
|
final BoxFit fit;
|
|
|
|
final String? badge;
|
|
|
|
final Function? onHide;
|
|
|
|
|
|
|
|
const _AttachmentItemImage({
|
|
|
|
required this.parentId,
|
|
|
|
required this.item,
|
|
|
|
required this.showBadge,
|
|
|
|
required this.showHideButton,
|
|
|
|
required this.fit,
|
|
|
|
this.badge,
|
|
|
|
this.onHide,
|
|
|
|
});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Hero(
|
2024-07-16 11:46:53 +00:00
|
|
|
tag: Key('a${item.uuid}p$parentId'),
|
2024-07-06 10:35:43 +00:00
|
|
|
child: Stack(
|
|
|
|
fit: StackFit.expand,
|
|
|
|
children: [
|
|
|
|
if (PlatformInfo.canCacheImage)
|
|
|
|
CachedNetworkImage(
|
|
|
|
fit: fit,
|
2024-07-29 09:56:36 +00:00
|
|
|
imageUrl: ServiceFinder.buildUrl(
|
|
|
|
'files',
|
2024-08-18 14:51:52 +00:00
|
|
|
'/attachments/${item.rid}',
|
2024-07-06 10:35:43 +00:00
|
|
|
),
|
2024-07-29 09:56:36 +00:00
|
|
|
progressIndicatorBuilder: (context, url, downloadProgress) {
|
|
|
|
return Center(
|
|
|
|
child: CircularProgressIndicator(
|
|
|
|
value: downloadProgress.progress,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
errorWidget: (context, url, error) {
|
|
|
|
return Material(
|
|
|
|
color: Theme.of(context).colorScheme.surface,
|
2024-08-24 03:47:40 +00:00
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
const Icon(Icons.close, size: 32)
|
|
|
|
.animate(onPlay: (e) => e.repeat(reverse: true))
|
|
|
|
.fade(duration: 500.ms),
|
|
|
|
Text(error.toString()),
|
|
|
|
],
|
2024-07-29 09:56:36 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
2024-07-06 10:35:43 +00:00
|
|
|
)
|
|
|
|
else
|
|
|
|
Image.network(
|
2024-08-24 03:47:40 +00:00
|
|
|
ServiceFinder.buildUrl('files', '/attachments/${item.rid}'),
|
2024-07-06 10:35:43 +00:00
|
|
|
fit: fit,
|
|
|
|
loadingBuilder: (BuildContext context, Widget child,
|
|
|
|
ImageChunkEvent? loadingProgress) {
|
|
|
|
if (loadingProgress == null) return child;
|
|
|
|
return Center(
|
|
|
|
child: CircularProgressIndicator(
|
|
|
|
value: loadingProgress.expectedTotalBytes != null
|
|
|
|
? loadingProgress.cumulativeBytesLoaded /
|
|
|
|
loadingProgress.expectedTotalBytes!
|
|
|
|
: null,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
2024-07-29 09:56:36 +00:00
|
|
|
errorBuilder: (context, error, stackTrace) {
|
|
|
|
return Material(
|
|
|
|
color: Theme.of(context).colorScheme.surface,
|
2024-08-24 03:47:40 +00:00
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
const Icon(Icons.close, size: 32)
|
|
|
|
.animate(onPlay: (e) => e.repeat(reverse: true))
|
|
|
|
.fade(duration: 500.ms),
|
|
|
|
Text(error.toString()),
|
|
|
|
],
|
2024-07-29 09:56:36 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
2024-07-06 10:35:43 +00:00
|
|
|
),
|
|
|
|
if (showBadge && badge != null)
|
|
|
|
Positioned(
|
|
|
|
right: 12,
|
|
|
|
bottom: 8,
|
|
|
|
child: Material(
|
|
|
|
color: Colors.transparent,
|
|
|
|
child: Chip(label: Text(badge!)),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
if (showHideButton && item.isMature)
|
|
|
|
Positioned(
|
|
|
|
top: 8,
|
|
|
|
left: 12,
|
|
|
|
child: Material(
|
|
|
|
color: Colors.transparent,
|
|
|
|
child: ActionChip(
|
|
|
|
visualDensity:
|
|
|
|
const VisualDensity(vertical: -4, horizontal: -4),
|
|
|
|
avatar: Icon(
|
|
|
|
Icons.visibility_off,
|
|
|
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
|
|
|
),
|
|
|
|
label: Text('hide'.tr),
|
|
|
|
onPressed: () {
|
|
|
|
if (onHide != null) onHide!();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _AttachmentItemVideo extends StatefulWidget {
|
|
|
|
final Attachment item;
|
2024-08-06 11:39:07 +00:00
|
|
|
final bool autoload;
|
2024-07-06 10:35:43 +00:00
|
|
|
|
2024-08-06 11:39:07 +00:00
|
|
|
const _AttachmentItemVideo({
|
|
|
|
required this.item,
|
|
|
|
this.autoload = false,
|
|
|
|
});
|
2024-07-06 10:35:43 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
State<_AttachmentItemVideo> createState() => _AttachmentItemVideoState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _AttachmentItemVideoState extends State<_AttachmentItemVideo> {
|
2024-09-08 14:43:01 +00:00
|
|
|
bool _showContent = false;
|
|
|
|
|
|
|
|
VideoPlayerController? _videoController;
|
|
|
|
ChewieController? _chewieController;
|
|
|
|
|
|
|
|
Future<void> _startLoad() async {
|
|
|
|
setState(() => _showContent = true);
|
|
|
|
final url =
|
|
|
|
ServiceFinder.buildUrl('files', '/attachments/${widget.item.rid}');
|
|
|
|
_videoController = VideoPlayerController.networkUrl(Uri.parse(url));
|
|
|
|
await _videoController!.initialize();
|
|
|
|
_chewieController = ChewieController(
|
|
|
|
videoPlayerController: _videoController!,
|
|
|
|
aspectRatio: widget.item.metadata?['ratio'],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
if (widget.autoload) {
|
|
|
|
_startLoad();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final ratio = widget.item.metadata?['ratio'] ?? 16 / 9;
|
|
|
|
if (!_showContent) {
|
|
|
|
return GestureDetector(
|
|
|
|
child: AspectRatio(
|
|
|
|
aspectRatio: ratio,
|
|
|
|
child: CenteredContainer(
|
|
|
|
maxWidth: 280,
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
const Icon(
|
|
|
|
Icons.not_started,
|
|
|
|
color: Colors.white,
|
|
|
|
size: 32,
|
|
|
|
),
|
|
|
|
const Gap(8),
|
|
|
|
Text(
|
|
|
|
'attachmentUnload'.tr,
|
|
|
|
style: const TextStyle(
|
|
|
|
color: Colors.white,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 16,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
'attachmentUnloadCaption'.tr,
|
|
|
|
style: const TextStyle(color: Colors.white),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
onTap: () {
|
|
|
|
_startLoad();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
} else if (_chewieController == null) {
|
|
|
|
return const Center(
|
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Chewie(controller: _chewieController!);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_chewieController?.dispose();
|
|
|
|
_videoController?.dispose();
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _AttachmentItemAudio extends StatefulWidget {
|
|
|
|
final Attachment item;
|
|
|
|
final bool autoload;
|
2024-08-19 11:36:01 +00:00
|
|
|
|
2024-09-08 14:43:01 +00:00
|
|
|
const _AttachmentItemAudio({
|
|
|
|
required this.item,
|
|
|
|
this.autoload = false,
|
|
|
|
});
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<_AttachmentItemAudio> createState() => _AttachmentItemAudioState();
|
|
|
|
}
|
2024-07-06 10:35:43 +00:00
|
|
|
|
2024-09-08 14:43:01 +00:00
|
|
|
class _AttachmentItemAudioState extends State<_AttachmentItemAudio> {
|
2024-08-06 11:39:07 +00:00
|
|
|
bool _showContent = false;
|
|
|
|
|
2024-09-08 14:43:01 +00:00
|
|
|
double? _draggingValue;
|
|
|
|
|
|
|
|
AudioPlayer? _audioController;
|
|
|
|
|
2024-08-17 10:44:20 +00:00
|
|
|
Future<void> _startLoad() async {
|
2024-08-06 11:39:07 +00:00
|
|
|
setState(() => _showContent = true);
|
2024-09-08 14:43:01 +00:00
|
|
|
final url =
|
|
|
|
ServiceFinder.buildUrl('files', '/attachments/${widget.item.rid}');
|
|
|
|
_audioController = AudioPlayer();
|
|
|
|
// Platform that can cache image also capable to cache audio
|
|
|
|
// https://pub.dev/packages/just_audio#experimental-features
|
|
|
|
if (PlatformInfo.canCacheImage) {
|
|
|
|
final source = LockCachingAudioSource(Uri.parse(url));
|
|
|
|
await _audioController!.setAudioSource(source);
|
|
|
|
} else {
|
|
|
|
await _audioController!.setUrl(url);
|
|
|
|
}
|
|
|
|
_audioController!.playingStream.listen((_) => setState(() {}));
|
|
|
|
_audioController!.positionStream.listen((_) => setState(() {}));
|
|
|
|
_audioController!.durationStream.listen((_) => setState(() {}));
|
|
|
|
_audioController!.bufferedPositionStream.listen((_) => setState(() {}));
|
2024-08-06 11:39:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2024-08-17 10:44:20 +00:00
|
|
|
if (widget.autoload) {
|
|
|
|
_startLoad();
|
|
|
|
}
|
2024-07-06 10:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-09-08 14:43:01 +00:00
|
|
|
const ratio = 16 / 9;
|
2024-08-19 11:36:01 +00:00
|
|
|
if (!_showContent) {
|
2024-08-06 11:39:07 +00:00
|
|
|
return GestureDetector(
|
|
|
|
child: AspectRatio(
|
|
|
|
aspectRatio: ratio,
|
|
|
|
child: CenteredContainer(
|
|
|
|
maxWidth: 280,
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
const Icon(
|
|
|
|
Icons.not_started,
|
|
|
|
color: Colors.white,
|
|
|
|
size: 32,
|
|
|
|
),
|
2024-09-07 09:45:44 +00:00
|
|
|
const Gap(8),
|
2024-08-06 11:39:07 +00:00
|
|
|
Text(
|
|
|
|
'attachmentUnload'.tr,
|
|
|
|
style: const TextStyle(
|
|
|
|
color: Colors.white,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 16,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
'attachmentUnloadCaption'.tr,
|
|
|
|
style: const TextStyle(color: Colors.white),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
onTap: () {
|
|
|
|
_startLoad();
|
|
|
|
},
|
|
|
|
);
|
2024-09-08 14:43:01 +00:00
|
|
|
} else if (_audioController == null) {
|
|
|
|
return const Center(
|
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
);
|
2024-08-06 11:39:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-08 14:43:01 +00:00
|
|
|
return AspectRatio(
|
2024-08-19 11:36:01 +00:00
|
|
|
aspectRatio: ratio,
|
2024-09-08 14:43:01 +00:00
|
|
|
child: CenteredContainer(
|
|
|
|
maxWidth: 320,
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
const Icon(Icons.audio_file, size: 32),
|
|
|
|
const Gap(8),
|
|
|
|
Text(
|
|
|
|
widget.item.alt,
|
|
|
|
style: const TextStyle(fontSize: 13),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
const Gap(12),
|
|
|
|
Row(
|
|
|
|
children: [
|
|
|
|
Expanded(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
SliderTheme(
|
|
|
|
data: SliderThemeData(
|
|
|
|
trackHeight: 2,
|
|
|
|
trackShape: _PlayerProgressTrackShape(),
|
|
|
|
thumbShape: const RoundSliderThumbShape(
|
|
|
|
enabledThumbRadius: 8,
|
|
|
|
),
|
|
|
|
overlayShape: SliderComponentShape.noOverlay,
|
|
|
|
),
|
|
|
|
child: Slider(
|
|
|
|
secondaryTrackValue: _audioController!
|
|
|
|
.bufferedPosition.inMilliseconds
|
|
|
|
.abs()
|
|
|
|
.toDouble(),
|
|
|
|
value: _draggingValue?.abs() ??
|
|
|
|
_audioController!.position.inMilliseconds
|
|
|
|
.toDouble()
|
|
|
|
.abs(),
|
|
|
|
min: 0,
|
|
|
|
max: max(
|
|
|
|
_audioController!.bufferedPosition.inMilliseconds
|
|
|
|
.abs(),
|
|
|
|
max(
|
|
|
|
_audioController!.position.inMilliseconds.abs(),
|
|
|
|
_audioController!.duration?.inMilliseconds
|
|
|
|
.abs() ??
|
|
|
|
1,
|
|
|
|
),
|
|
|
|
).toDouble(),
|
|
|
|
onChanged: (value) {
|
|
|
|
setState(() => _draggingValue = value);
|
|
|
|
},
|
|
|
|
onChangeEnd: (value) {
|
|
|
|
_audioController!
|
|
|
|
.seek(Duration(milliseconds: value.toInt()));
|
|
|
|
setState(() => _draggingValue = null);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
_audioController!.position.toHumanReadableString(),
|
|
|
|
style: GoogleFonts.robotoMono(fontSize: 12),
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
_audioController!.duration
|
|
|
|
?.toHumanReadableString() ??
|
|
|
|
'00:00',
|
|
|
|
style: GoogleFonts.robotoMono(fontSize: 12),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
).paddingSymmetric(horizontal: 8, vertical: 4),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
const Gap(16),
|
|
|
|
IconButton.filled(
|
|
|
|
icon: _audioController!.playing
|
|
|
|
? const Icon(Icons.pause)
|
|
|
|
: const Icon(Icons.play_arrow),
|
|
|
|
onPressed: () {
|
|
|
|
if (_audioController!.playing) {
|
|
|
|
_audioController!.pause();
|
|
|
|
} else {
|
|
|
|
_audioController!.play();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
visualDensity: const VisualDensity(
|
|
|
|
horizontal: -4,
|
|
|
|
vertical: 0,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2024-07-06 11:07:46 +00:00
|
|
|
);
|
2024-07-06 10:35:43 +00:00
|
|
|
}
|
2024-08-19 11:36:01 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
2024-09-08 14:43:01 +00:00
|
|
|
_audioController?.dispose();
|
2024-08-19 11:36:01 +00:00
|
|
|
super.dispose();
|
|
|
|
}
|
2024-05-20 15:39:23 +00:00
|
|
|
}
|
2024-09-08 14:43:01 +00:00
|
|
|
|
|
|
|
class _PlayerProgressTrackShape extends RoundedRectSliderTrackShape {
|
|
|
|
@override
|
|
|
|
Rect getPreferredRect({
|
|
|
|
required RenderBox parentBox,
|
|
|
|
Offset offset = Offset.zero,
|
|
|
|
required SliderThemeData sliderTheme,
|
|
|
|
bool isEnabled = false,
|
|
|
|
bool isDiscrete = false,
|
|
|
|
}) {
|
|
|
|
final trackHeight = sliderTheme.trackHeight;
|
|
|
|
final trackLeft = offset.dx;
|
|
|
|
final trackTop = offset.dy + (parentBox.size.height - trackHeight!) / 2;
|
|
|
|
final trackWidth = parentBox.size.width;
|
|
|
|
return Rect.fromLTWH(trackLeft, trackTop, trackWidth, trackHeight);
|
|
|
|
}
|
|
|
|
}
|