Andy Himberger
07/10/2024, 8:29 PMAndy Himberger
07/10/2024, 8:31 PMval pillRadius = 18.dp
Button(
modifier = modifier,
shape = RoundedCornerShape(topStart = pillRadius, topEnd = pillRadius, bottomStart = pillRadius, bottomEnd = 0.dp),
onClick = onClick,
) {
Text(text, style = MaterialTheme.typography.body1)
}
material (not 3) button wrapper has this.
I tried debugging into the gesture handling and the mouse events are being fired, I think something about previous pressed state was different in the mouseup event changing hit test behavioryschimke
07/10/2024, 9:01 PMAndy Himberger
07/10/2024, 10:09 PMyschimke
07/11/2024, 7:22 AM