Better labels for EPC QR code actions
This commit is contained in:
parent
3a40167e2f
commit
8324ac0101
|
@ -57,14 +57,14 @@ fun FloatingActionMenu(
|
|||
if (fabVisibilityAnimation.value > 0) {
|
||||
Box(Modifier.fillMaxSize().padding(bottom = bottomPadding, end = 12.dp), contentAlignment = Alignment.BottomEnd) {
|
||||
Column(Modifier, horizontalAlignment = Alignment.End) {
|
||||
FloatingActionMenuItem("QR Code erstellen", "EPC QR Code erstellen") {
|
||||
FloatingActionMenuItem("Überweisungs-QR-Code erstellen", "EPC QR Code erstellen") {
|
||||
handleClick {
|
||||
uiState.showCreateEpcQrCodeScreen.value = true
|
||||
}
|
||||
}
|
||||
|
||||
if (QrCodeService.supportsReadingQrCodesFromCamera) {
|
||||
FloatingActionMenuItem("Überweisung aus QR-Code", "Neue Überweisung mit Daten aus EPC QR Code (GiroCode, scan2Code, Zahlen mit Code, ...)", enabled = accountsThatSupportMoneyTransfer.isNotEmpty()) {
|
||||
FloatingActionMenuItem("Überweisungs-QR-Code lesen", "Neue Überweisung mit Daten aus EPC QR Code (GiroCode, scan2Code, Zahlen mit Code, ...)", enabled = accountsThatSupportMoneyTransfer.isNotEmpty()) {
|
||||
handleClick {
|
||||
uiState.showTransferMoneyFromEpcQrCodeScreen.value = true
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue