mirror of
https://github.com/immich-app/immich.git
synced 2025-02-04 01:09:14 -05:00
fix(mobile): negative coordinate input (#11292)
* fix(mobile): negative coordinate input * format
This commit is contained in:
parent
536628ad95
commit
86a658b891
1 changed files with 2 additions and 1 deletions
|
@ -141,7 +141,8 @@ class _ManualPickerInput extends HookWidget {
|
|||
errorText: isValid.value ? null : errorText.tr(),
|
||||
),
|
||||
onEditingComplete: onEditingComplete,
|
||||
keyboardType: const TextInputType.numberWithOptions(decimal: true),
|
||||
keyboardType:
|
||||
const TextInputType.numberWithOptions(decimal: true, signed: true),
|
||||
inputFormatters: [LengthLimitingTextInputFormatter(8)],
|
||||
onTapOutside: (_) => focusNode.unfocus(),
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue