Fixed
Status Update
Comments
hu...@google.com <hu...@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()
}
jb...@google.com <jb...@google.com>
sh...@ebay.com <sh...@ebay.com> #3
this is still an issue on the latest compose stable version 1.5.4
Description