- new appicon
- smartRefreshIndicator (https://github.com/flutter/flutter/issues/65356#issuecomment-2410727567)
This commit is contained in:
2025-06-03 10:03:20 +02:00
parent e24a2122a5
commit 800df72a33
48 changed files with 206 additions and 185 deletions

View File

@ -52,7 +52,9 @@ class _VideoWidgetState extends State<VideoWidget> {
mainAxisSize: MainAxisSize.min,
children: [
AspectRatio(
aspectRatio: isAudio ? 1.0 : _controller.value.aspectRatio,
aspectRatio: _controller.value.isInitialized
? _controller.value.aspectRatio
: 9 / 16,
child: Stack(
alignment: Alignment.center,
children: [
@ -66,104 +68,108 @@ class _VideoWidgetState extends State<VideoWidget> {
},
child: isAudio
? Image.network(widget.details.coverUrl, fit: BoxFit.cover)
: VideoPlayer(_controller),
: _controller.value.isInitialized
? VideoPlayer(_controller)
: Center(child: CircularProgressIndicator()),
),
Align(
alignment: Alignment.bottomCenter,
child: Stack(
if (_controller.value.isInitialized)
Align(
alignment: Alignment.bottomCenter,
child: Stack(
children: [
SizedBox(
height: 10,
child: VideoProgressIndicator(
_controller,
allowScrubbing: true,
padding: EdgeInsets.only(bottom: 0),
colors: VideoProgressColors(
playedColor: Colors.red,
bufferedColor: Colors.grey,
backgroundColor: Colors.black.withAlpha(128),
),
),
),
Positioned(
left:
(_controller.value.position.inMilliseconds /
_controller.value.duration.inMilliseconds) *
MediaQuery.of(context).size.width -
6,
bottom: -1,
child: Container(
width: 12,
height: 12,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.white,
border: Border.all(color: Colors.red, width: 2),
),
),
),
],
),
),
],
),
),
if (_controller.value.isInitialized)
SizedBox(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
_formatDuration(_controller.value.position),
style: const TextStyle(color: Colors.white),
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
SizedBox(
height: 10,
child: VideoProgressIndicator(
_controller,
allowScrubbing: true,
padding: EdgeInsets.only(bottom: 0),
colors: VideoProgressColors(
playedColor: Colors.red,
bufferedColor: Colors.grey,
backgroundColor: Colors.black.withValues(alpha: 0.5),
),
),
IconButton(
icon: const Icon(Icons.replay_10),
color: Colors.white,
onPressed: () {
_controller.seekTo(
_controller.value.position -
const Duration(seconds: 10),
);
},
),
Positioned(
left:
(_controller.value.position.inMilliseconds /
_controller.value.duration.inMilliseconds) *
MediaQuery.of(context).size.width -
6,
bottom: -1,
child: Container(
width: 12,
height: 12,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.white,
border: Border.all(color: Colors.red, width: 2),
),
IconButton(
color: Colors.white,
icon: Icon(
_controller.value.isPlaying
? Icons.pause
: Icons.play_arrow,
),
onPressed: () {
setState(() {
_controller.value.isPlaying
? _controller.pause()
: _controller.play();
});
},
),
IconButton(
color: Colors.white,
icon: const Icon(Icons.forward_10),
onPressed: () {
_controller.seekTo(
_controller.value.position +
const Duration(seconds: 10),
);
},
),
],
),
),
],
Text(
_formatDuration(_controller.value.duration),
style: const TextStyle(color: Colors.white),
),
],
),
),
),
SizedBox(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
_formatDuration(_controller.value.position),
style: const TextStyle(color: Colors.white),
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
IconButton(
icon: const Icon(Icons.replay_10),
color: Colors.white,
onPressed: () {
_controller.seekTo(
_controller.value.position -
const Duration(seconds: 10),
);
},
),
IconButton(
color: Colors.white,
icon: Icon(
_controller.value.isPlaying
? Icons.pause
: Icons.play_arrow,
),
onPressed: () {
setState(() {
_controller.value.isPlaying
? _controller.pause()
: _controller.play();
});
},
),
IconButton(
color: Colors.white,
icon: const Icon(Icons.forward_10),
onPressed: () {
_controller.seekTo(
_controller.value.position +
const Duration(seconds: 10),
);
},
),
],
),
Text(
_formatDuration(_controller.value.duration),
style: const TextStyle(color: Colors.white),
),
],
),
),
],
);
}