We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 294cce6 commit e0019eeCopy full SHA for e0019ee
lib/widgets/lightbox.dart
@@ -340,7 +340,7 @@ class VideoDurationLabel extends StatelessWidget {
340
final hours = value.inHours.toString().padLeft(2, '0');
341
final minutes = value.inMinutes.remainder(60).toString().padLeft(2, '0');
342
final seconds = value.inSeconds.remainder(60).toString().padLeft(2, '0');
343
- return '${hours == '00' ? '' : '$hours:'}$minutes:$seconds';
+ return '${hours == '00' ? '' : '$hours:'}$minutes:$seconds'; // TODO(i18n)
344
}
345
346
@override
0 commit comments