I'm trying compose material3, I've read <here> tha...
# compose
d
I'm trying compose material3, I've read here that we are supposed to keep both Material2 and Material3 libraries together right now. I'd rather not, but I need an
OutlinedTextField
do you know of any library or snipped of code that port material 2 textfield to material 3? Thanks
a
I solve it like this for now (I ignored the colors that isn't needed for my usecase)
Copy code
Slider(
        value = offset,
        onValueChange = { offset = it },
        colors = SliderDefaults.colors(
            thumbColor = MaterialTheme.colorScheme.primary,
            activeTrackColor = MaterialTheme.colorScheme.primary,
            activeTickColor = MaterialTheme.colorScheme.onPrimary.copy(alpha = SliderDefaults.TickAlpha)
        )
    )
🚫 1