fix conversations attachment icon's tint + fix radiobuttons and checkboxes' not clickable in settings

This commit is contained in:
2024-12-14 01:14:25 +03:00
parent 26c413037a
commit 46e580dc2e
2 changed files with 7 additions and 3 deletions
@@ -266,7 +266,9 @@ fun AlertItems(
Spacer(modifier = Modifier.width(10.dp))
Checkbox(
checked = item.isSelected,
onCheckedChange = {}
onCheckedChange = {
onItemCheckedChanged?.invoke(index)
}
)
}
@@ -274,7 +276,9 @@ fun AlertItems(
Spacer(modifier = Modifier.width(10.dp))
RadioButton(
selected = item.isSelected,
onClick = {}
onClick = {
onItemClick?.invoke(index)
}
)
}