Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
As a workaround using reflection
try {
Class
.forName("androidx.compose.material3.TabRowKt")
.getDeclaredField("ScrollableTabRowMinimumTabWidth").apply {
isAccessible = true
}.set(this, 0f)
} catch (e: Exception) {
e.printStackTrace()
}
cl...@google.com <cl...@google.com> #3
this is still an issue on the latest compose stable version 1.5.4
pr...@google.com <pr...@google.com> #4
can I help resolve this issue?
Description