Focussing amount TextField after selecting a recipient from dropdown
This commit is contained in:
parent
4761876cf2
commit
88ef0a703e
|
@ -7,14 +7,14 @@ import androidx.compose.material.*
|
|||
import androidx.compose.runtime.*
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.focus.FocusRequester
|
||||
import androidx.compose.ui.focus.focusRequester
|
||||
import androidx.compose.ui.text.input.ImeAction
|
||||
import androidx.compose.ui.text.input.KeyboardType
|
||||
import androidx.compose.ui.text.style.TextAlign
|
||||
import androidx.compose.ui.text.style.TextOverflow
|
||||
import androidx.compose.ui.unit.dp
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.withContext
|
||||
import kotlinx.coroutines.*
|
||||
import net.codinux.banking.client.model.Amount
|
||||
import net.codinux.banking.client.model.BankAccountFeatures
|
||||
import net.codinux.banking.ui.IOorDefault
|
||||
|
@ -71,6 +71,8 @@ fun TransferMoneyDialog(
|
|||
|
||||
var isTransferringMoney by remember { mutableStateOf(false) }
|
||||
|
||||
val amountFocus = remember { FocusRequester() }
|
||||
|
||||
val verticalSpace = 8.dp
|
||||
|
||||
val coroutineScope = rememberCoroutineScope()
|
||||
|
@ -139,6 +141,11 @@ fun TransferMoneyDialog(
|
|||
recipientName = it.name
|
||||
recipientAccountIdentifier = it.accountIdentifier
|
||||
// TODO: set recipient bank identifier
|
||||
|
||||
coroutineScope.launch {
|
||||
delay(250)
|
||||
amountFocus.requestFocus()
|
||||
}
|
||||
} else {
|
||||
recipientName = ""
|
||||
recipientAccountIdentifier = ""
|
||||
|
@ -177,7 +184,7 @@ fun TransferMoneyDialog(
|
|||
value = amount,
|
||||
onValueChange = { amount = it },
|
||||
label = { Text("Betrag") },
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
modifier = Modifier.fillMaxWidth().focusRequester(amountFocus),
|
||||
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Decimal, imeAction = ImeAction.Next)
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue