2025-02-17 20:39:02 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:lightmeter/data/models/camera_feature.dart';
|
|
|
|
import 'package:lightmeter/providers/services_provider.dart';
|
|
|
|
import 'package:lightmeter/providers/user_preferences_provider.dart';
|
|
|
|
|
2024-04-07 08:54:57 +00:00
|
|
|
extension DoubleToZoom on double {
|
2025-02-17 20:39:02 +00:00
|
|
|
String toZoom(BuildContext context) {
|
|
|
|
final showFocalLength = UserPreferencesProvider.cameraFeatureOf(context, CameraFeature.showFocalLength);
|
|
|
|
final cameraFocalLength = ServicesProvider.of(context).userPreferencesService.cameraFocalLength;
|
|
|
|
|
|
|
|
if (showFocalLength && cameraFocalLength != null) {
|
|
|
|
ServicesProvider.of(context).userPreferencesService.cameraFocalLength;
|
|
|
|
final zoomedFocalLength = (this * cameraFocalLength).round();
|
|
|
|
return '${zoomedFocalLength}mm';
|
|
|
|
} else {
|
|
|
|
return 'x${toStringAsFixed(2)}';
|
|
|
|
}
|
|
|
|
}
|
2024-04-07 08:54:57 +00:00
|
|
|
}
|