Is it possible to somehow change the minimum tab s...
# compose
j
Is it possible to somehow change the minimum tab size of ScrollableTabRow which is currently linked to a private val called
ScrollableTabRowMinimumTabWidth
? Or do I have to copy the full implementation to make this change?
Currently having this:
But I prefer to have just something like this
r
Hey Joey, did you solve your issue?
Copy code
Class
    .forName("androidx.compose.material3.TabRowKt")
    .getDeclaredField("ScrollableTabRowMinimumTabWidth").apply {
        isAccessible = true
        set(this, 0f)
    }
j
If I remember it correctly I implemented my own tabs to fix this issue
103 Views