Fixed
Status Update
Comments
lp...@google.com <lp...@google.com>
na...@google.com <na...@google.com> #3
It seems like this could be addressed by updating the EnumType.parseValue()
method
maybe something like this?
public override fun parseValue(value: String): D {
var caseInsensitiveMatch: D? = null
for (constant in type.enumConstants) {
val enumConstant = (constant as Enum<*>)
if (enumConstant.name == value) {
return constant
}
if (enumConstant.name.equals(value, ignoreCase = true) && caseInsensitiveMatch == null) {
caseInsensitiveMatch = constant
}
}
if (caseInsensitiveMatch != null) return caseInsensitiveMatch
throw IllegalArgumentException(
"Enum value $value not found for type ${type.name}."
)
}
I'd be happy to submit a complete Pull Request if you think this is a good solution.
Description
Jetpack Compose version: 1.3.1 Jetpack Compose component used: androidx.compose.material:material
Android Studio Build: Build #AI-222.4345.14.2221.9321504, built on November 22, 2022
Kotlin version: 1.7.20
Steps to Reproduce or Code Sample to Reproduce:
It seems that insets are first laid out without any insets, the next composition gets the real insets. However as the pull to refresh state is being remembered the offset can never be updated. This causes the pull to refresh indicator to be below the statusbar in our case.
A workaround for now is getting the insets from the activity window insets, however this should not be the proper workaround.
Example code for adding statusbar padding:
It seems to me that the pull to refresh state also needs to recompose on new offsets.