mirror of
https://github.com/immich-app/immich.git
synced 2024-12-29 15:11:58 +00:00
parent
6030349a6f
commit
df10618a7e
2 changed files with 2 additions and 2 deletions
|
@ -194,7 +194,7 @@ class ExifBottomSheet extends HookConsumerWidget {
|
||||||
exifInfo.mm != null ||
|
exifInfo.mm != null ||
|
||||||
exifInfo.iso != null
|
exifInfo.iso != null
|
||||||
? Text(
|
? 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,
|
style: context.textTheme.bodySmall,
|
||||||
)
|
)
|
||||||
: null,
|
: null,
|
||||||
|
|
|
@ -49,7 +49,7 @@ class ExifDetail extends StatelessWidget {
|
||||||
exifInfo?.mm != null ||
|
exifInfo?.mm != null ||
|
||||||
exifInfo?.iso != null
|
exifInfo?.iso != null
|
||||||
? Text(
|
? 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,
|
style: context.textTheme.bodySmall,
|
||||||
)
|
)
|
||||||
: null,
|
: null,
|
||||||
|
|
Loading…
Reference in a new issue