Fixed
Status Update
Comments
ki...@google.com <ki...@google.com>
al...@google.com <al...@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()
}
e....@gmail.com <e....@gmail.com> #3
this is still an issue on the latest compose stable version 1.5.4
al...@google.com <al...@google.com> #4
can I help resolve this issue?
pe...@gmail.com <pe...@gmail.com> #5
Any progress on this?
Description
Version used: 1.2.0-rc01 and 1.3.0-alpha01
Devices/Android versions reproduced on: Emulator Pixel 3 API 29, Emulator Pixel 2 API 28, Samsung S9 API 29
Calls to AppCompatDelegate.setDefaultNightMode() don't work well on the latest AppCompat versions, but it works on the latest stable version.
Most of the time, the theme doesn't change.