Updated on 2026-08-14
This commit is contained in:
parent
3ae32901d4
commit
f2add9e95b
21 changed files with 193 additions and 195 deletions
|
|
@ -1,10 +1,6 @@
|
|||
package com.tangem.core.ui.ds.contextmenu
|
||||
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Row
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.width
|
||||
import androidx.compose.foundation.layout.*
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.ui.Modifier
|
||||
|
|
@ -35,12 +31,13 @@ fun TangemContextMenuCheckboxItem(title: TextReference, isChecked: Boolean, onCl
|
|||
text = title.resolveReference(),
|
||||
style = TangemTheme.typography2.headingSemibold17,
|
||||
color = TangemTheme.colors2.text.neutral.primary,
|
||||
maxLines = 1,
|
||||
)
|
||||
TangemCheckbox(
|
||||
modifier = Modifier,
|
||||
isRounded = true,
|
||||
isChecked = isChecked,
|
||||
onCheckedChange = { /* no-op */ },
|
||||
onCheckedChange = { onClick() },
|
||||
)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue