You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-08-07 23:03:36 +02:00
* image thumbnail refactor * minor const-ification in new thumbnail tile * underscore helper classes --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
24 lines
626 B
Dart
24 lines
626 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/extensions/duration_extensions.dart';
|
|
|
|
class FormattedDuration extends StatelessWidget {
|
|
final Duration data;
|
|
const FormattedDuration(this.data, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox(
|
|
width: data.inHours > 0 ? 70 : 60, // use a fixed width to prevent jitter
|
|
child: Text(
|
|
data.format(),
|
|
style: const TextStyle(
|
|
fontSize: 14.0,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
);
|
|
}
|
|
}
|