Colton Idle
02/11/2024, 7:25 AM@Composable
fun MyButtonToggleable(
modifier: Modifier,
onClick: () -> Unit,
text: String,
toggle: Boolean = false,
@DrawableRes image: Int? = null
) {
Image(painterResource(id = image), null)
I guess my two questions are:
1. Is there a way to bring that annotation over into kmp? seems to be android specific?
2. painterResource isn't available?curioustechizen
02/11/2024, 7:49 AMcurioustechizen
02/11/2024, 7:51 AMcurioustechizen
02/11/2024, 7:52 AMagrosner
02/11/2024, 6:08 PMagrosner
02/11/2024, 6:08 PMJoel Denke
02/14/2024, 2:45 PM