diff --git a/lib/db/files_db.dart b/lib/db/files_db.dart index 4a8aaec4a..db4ae89aa 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 d65451d6c..6fc0e68b5 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 9d17a53ed..99d79a6e3 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);