mirror of
https://github.com/bitwarden/android.git
synced 2025-01-08 09:17:36 +03:00
wip
This commit is contained in:
parent
53c0c7d2ad
commit
b0194028a8
1 changed files with 3 additions and 1 deletions
|
@ -214,15 +214,17 @@ private fun NotificationSummaryItem(
|
||||||
) {
|
) {
|
||||||
Icon(
|
Icon(
|
||||||
painter = rememberVectorPainter(id = R.drawable.ic_account_initials_container),
|
painter = rememberVectorPainter(id = R.drawable.ic_account_initials_container),
|
||||||
|
tint = BitwardenTheme.colorScheme.filledButton.background,
|
||||||
contentDescription = null,
|
contentDescription = null,
|
||||||
modifier = Modifier.size(40.dp),
|
modifier = Modifier.size(40.dp),
|
||||||
)
|
)
|
||||||
|
|
||||||
Text(
|
Text(
|
||||||
text = notificationSummary.title.substring(0,2),
|
text = notificationSummary.title.substring(0, 2),
|
||||||
style = BitwardenTheme.typography.titleMedium
|
style = BitwardenTheme.typography.titleMedium
|
||||||
// Do not allow scaling
|
// Do not allow scaling
|
||||||
.copy(fontSize = 16.dp.toUnscaledTextUnit()),
|
.copy(fontSize = 16.dp.toUnscaledTextUnit()),
|
||||||
|
color = BitwardenTheme.colorScheme.filledButton.background.toSafeOverlayColor(),
|
||||||
modifier = Modifier.clearAndSetSemantics { },
|
modifier = Modifier.clearAndSetSemantics { },
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue