diff --git a/lib/db/files_db.dart b/lib/db/files_db.dart index 4a8aaec4af6c31857087693fdd013596132afc65..db4ae89aa2f9fdd41ceaafae5b56d1532aab6fe2 100644 --- a/lib/db/files_db.dart +++ b/lib/db/files_db.dart @@ -1399,7 +1399,8 @@ class FilesDB { // user and upload time is greater than 20 April 2023 epoch time and less than // 15 May 2023 epoch time Future> getFilesWithLocationUploadedBtw20AprTo15May2023( - int ownerID) async { + int ownerID, + ) async { final db = await database; final result = await db.query( filesTable, diff --git a/lib/services/search_service.dart b/lib/services/search_service.dart index d65451d6c6bcb67e7579d90cc9e744b05d8d092a..6fc0e68b518d4f005a28cb83292201b725c44400 100644 --- a/lib/services/search_service.dart +++ b/lib/services/search_service.dart @@ -15,7 +15,6 @@ import 'package:photos/models/search/album_search_result.dart'; import 'package:photos/models/search/generic_search_result.dart'; import 'package:photos/models/search/search_result.dart'; import 'package:photos/services/collections_service.dart'; -import "package:photos/services/feature_flag_service.dart"; import "package:photos/services/location_service.dart"; import "package:photos/states/location_screen_state.dart"; import "package:photos/ui/viewer/location/location_screen.dart"; diff --git a/lib/ui/viewer/location/radius_picker_widget.dart b/lib/ui/viewer/location/radius_picker_widget.dart index 9d17a53edb34ec9a2116f40c9ce4dec3102aadd2..99d79a6e3837422cb892eb71773bcb292367ede6 100644 --- a/lib/ui/viewer/location/radius_picker_widget.dart +++ b/lib/ui/viewer/location/radius_picker_widget.dart @@ -196,6 +196,8 @@ class _RadiusPickerWidgetState extends State { submitButtonLabel: "Done", textInputFormatter: [NumberWithDecimalInputFormatter(maxValue: 10000)], textInputType: const TextInputType.numberWithOptions(decimal: true), + message: "km", + alignMessage: Alignment.centerRight, ); if (result is Exception) { await showGenericErrorDialog(context: context);