fix(mobile): exposure time display (#10842)

exposure time fix
This commit is contained in:
waclaw66
2024-07-05 06:30:06 +02:00
committed by GitHub
parent 6030349a6f
commit df10618a7e
2 changed files with 2 additions and 2 deletions
@@ -49,7 +49,7 @@ class ExifDetail extends StatelessWidget {
exifInfo?.mm != null ||
exifInfo?.iso != null
? Text(
"ƒ/${exifInfo?.fNumber} ${exifInfo?.exposureTime} s ${exifInfo?.focalLength} mm ISO ${exifInfo?.iso ?? ''} ",
"ƒ/${exifInfo?.fNumber} ${exifInfo?.exposureTime} ${exifInfo?.focalLength} mm ISO ${exifInfo?.iso ?? ''} ",
style: context.textTheme.bodySmall,
)
: null,