Raised min text length for search to make it possible to hide autocomplete (TransferMoneyDialog is very buggy on iOS)
This commit is contained in:
parent
db2a75fba7
commit
0ac9c7155d
|
@ -229,7 +229,7 @@ fun TransferMoneyDialog(
|
||||||
"Verwendungszweck (optional)",
|
"Verwendungszweck (optional)",
|
||||||
paymentReference,
|
paymentReference,
|
||||||
dropdownMaxHeight = 175.dp, // when showing more items than on Android autocomplete dropdown covers soft keybaord
|
dropdownMaxHeight = 175.dp, // when showing more items than on Android autocomplete dropdown covers soft keybaord
|
||||||
minTextLengthForSearch = 0,
|
minTextLengthForSearch = 1,
|
||||||
getItemTitle = { suggestion -> suggestion.reference },
|
getItemTitle = { suggestion -> suggestion.reference },
|
||||||
onEnteredTextChanged = { paymentReference = it },
|
onEnteredTextChanged = { paymentReference = it },
|
||||||
onSelectedItemChanged = { paymentReference = it?.reference ?: "" },
|
onSelectedItemChanged = { paymentReference = it?.reference ?: "" },
|
||||||
|
|
Loading…
Reference in New Issue