Assigned
Status Update
Comments
se...@google.com <se...@google.com> #2
This is a browser bug related to user selectable zoom level.
po...@gmail.com <po...@gmail.com> #3
This appears to be the same issue I'm experiencing.
se...@google.com <se...@google.com> #4
Ime is not necessary part of repro, relayout does it.
@Composable
private fun TextCrash() {
val infiniteTransition = rememberInfiniteTransition(label = "infinite transition")
val padding by infiniteTransition.animateFloat(
initialValue = 0f,
targetValue = 50f,
animationSpec = infiniteRepeatable(tween(1000), RepeatMode.Reverse),
label = "I like to move it move it"
)
Box(
modifier = Modifier
.padding(padding.toInt().dp)
.fillMaxSize(),
contentAlignment = Alignment.Center
) {
Column(verticalArrangement = Arrangement.spacedBy(12.dp)) {
Text(
text = "Hello Android!".repeat(5),
textAlign = TextAlign.Center,
letterSpacing = 1.sp,
overflow = TextOverflow.Ellipsis,
maxLines = 1
)
}
}
}
se...@google.com <se...@google.com> #5
I am experiencing the same issue. white lines are appearing in IE browser.
does any one know how to get rid of this?
does any one know how to get rid of this?
se...@google.com <se...@google.com> #6
[Comment deleted]
se...@google.com <se...@google.com> #7
I see white lines on my V3 map as well, but I only see it on the iPad
po...@gmail.com <po...@gmail.com> #8
Any updates so far? We are still dealing with this issue on a daily basis, whenever we print out the route for our fire trucks. Fascinating fact is - that issue is related only to our default browser which is Google Chrome. Printing works in Opera and Firefox. :(
se...@google.com <se...@google.com> #9
same here
Description
Jetpack Compose version: 1.7.6
Jetpack Compose component used:
Android Studio Build: Ladybug Feature Drop 2024.2.2
Kotlin version: 2.1.0
Devices/Android versions reproduced on: Phone Emulator (API 34)
Keyboard (i.e. Gboard, Samsung, etc): AOSP Keyboard
If you have Material text
inside the layout with
Modifier.imePadding()
applied to it, and trigger the appearance of the soft keyboard, then text starts to move to the right of the screen.This bug is very similar to this one and is probably related to this code (it was introduced here ).
Screenshots and video attached.