mirror of
https://github.com/immich-app/immich.git
synced 2025-01-17 01:06:46 +01:00
Normalize progress bar value (#2967)
This commit is contained in:
parent
fb2cfcb640
commit
d078aea32b
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
import 'dart:io';
|
||||
import 'dart:math';
|
||||
import 'package:easy_localization/easy_localization.dart';
|
||||
import 'package:auto_route/auto_route.dart';
|
||||
import 'package:cached_network_image/cached_network_image.dart';
|
||||
|
@ -310,9 +311,12 @@ class GalleryViewerPage extends HookConsumerWidget {
|
|||
child: Slider(
|
||||
value: playerValue.duration == Duration.zero
|
||||
? 0.0
|
||||
: playerValue.position.inMicroseconds /
|
||||
playerValue.duration.inMicroseconds *
|
||||
: min(
|
||||
playerValue.position.inMicroseconds /
|
||||
playerValue.duration.inMicroseconds *
|
||||
100,
|
||||
100,
|
||||
),
|
||||
min: 0,
|
||||
max: 100,
|
||||
thumbColor: Colors.white,
|
||||
|
|
Loading…
Reference in a new issue