mirror of
https://github.com/bitwarden/android.git
synced 2025-03-16 19:28:44 +03:00
[PM-9838] Custom field spacing on Add/Edit item screen (#3546)
This commit is contained in:
parent
a5224c966c
commit
f1c486bf9a
4 changed files with 4 additions and 0 deletions
|
@ -274,6 +274,7 @@ fun LazyListScope.vaultAddEditCardItems(
|
|||
}
|
||||
|
||||
items(commonState.customFieldData) { customItem ->
|
||||
Spacer(modifier = Modifier.height(8.dp))
|
||||
VaultAddEditCustomField(
|
||||
customField = customItem,
|
||||
onCustomFieldValueChange = commonHandlers.onCustomFieldValueChange,
|
||||
|
|
|
@ -375,6 +375,7 @@ fun LazyListScope.vaultAddEditIdentityItems(
|
|||
}
|
||||
|
||||
items(commonState.customFieldData) { customItem ->
|
||||
Spacer(modifier = Modifier.height(8.dp))
|
||||
VaultAddEditCustomField(
|
||||
customField = customItem,
|
||||
onCustomFieldValueChange = commonTypeHandlers.onCustomFieldValueChange,
|
||||
|
|
|
@ -301,6 +301,7 @@ fun LazyListScope.vaultAddEditLoginItems(
|
|||
}
|
||||
|
||||
items(commonState.customFieldData) { customItem ->
|
||||
Spacer(modifier = Modifier.height(8.dp))
|
||||
VaultAddEditCustomField(
|
||||
customField = customItem,
|
||||
onCustomFieldValueChange = commonActionHandler.onCustomFieldValueChange,
|
||||
|
|
|
@ -153,6 +153,7 @@ fun LazyListScope.vaultAddEditSecureNotesItems(
|
|||
)
|
||||
}
|
||||
items(commonState.customFieldData) { customItem ->
|
||||
Spacer(modifier = Modifier.height(8.dp))
|
||||
VaultAddEditCustomField(
|
||||
customField = customItem,
|
||||
onCustomFieldValueChange = commonTypeHandlers.onCustomFieldValueChange,
|
||||
|
|
Loading…
Add table
Reference in a new issue