m3_lightmeter/lib/utils/double_to_zoom.dart
2025-02-17 21:39:02 +01:00

19 lines
824 B
Dart

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';
extension DoubleToZoom on double {
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)}';
}
}
}