This commit is contained in:
Vadim 2025-05-12 16:32:12 +02:00
parent 1a7f9165b9
commit 7410d7ed60
2 changed files with 0 additions and 4 deletions

View file

@ -9,8 +9,6 @@ class CameraInfoService {
const CameraInfoService();
// TODO: fix focal length for iOS screenshots
// TODO: fix integration test (find 1.91x)
Future<int?> mainCameraEfl() async {
final focalLength = await cameraInfoPlatformChannel.invokeMethod<double?>('mainCameraEfl');
return focalLength?.round();

View file

@ -75,6 +75,4 @@ class MeteringInteractor {
Future<bool> hasAmbientLightSensor() async => _lightSensorService.hasSensor();
Stream<int> luxStream() => _lightSensorService.luxStream();
void setCameraFocalLength(int focalLength) => _userPreferencesService.cameraFocalLength = focalLength;
}