v1.1.6+36
All checks were successful
Flutter Schmutter / build (push) Successful in 3m34s

- new theme: p1nk
- optimizations
This commit is contained in:
2025-06-07 23:07:31 +02:00
parent 836a0886e2
commit ffbde73300
5 changed files with 117 additions and 75 deletions

View File

@ -89,7 +89,6 @@ class VideoControlsOverlay extends ConsumerWidget {
bottom: 12,
child: Text(
'${_formatDuration(controller.value.position)} / ${_formatDuration(controller.value.duration)}',
style: TextStyle(color: Colors.white),
),
),
Listener(
@ -153,7 +152,7 @@ class _ControlButton extends StatelessWidget {
color: Colors.black.withValues(alpha: 0.4),
),
child: IconButton(
icon: Icon(icon, color: Colors.white, size: size),
icon: Icon(icon, size: size),
onPressed: onPressed,
),
);