alorma
03/24/2021, 5:30 PMalorma
03/24/2021, 5:31 PMjulioromano
03/24/2021, 5:32 PMalorma
03/24/2021, 5:33 PMmodifier = Modifier
.padding(8.dp)
.clickable { }
.size(100.dp),
alorma
03/24/2021, 5:34 PMjulioromano
03/24/2021, 5:34 PMalorma
03/24/2021, 5:35 PMalorma
03/24/2021, 5:35 PMjulioromano
03/24/2021, 5:35 PMjulioromano
03/24/2021, 5:36 PMmodifier = Modifier
.clip(RoundedCornerShape(4.dp)),
julioromano
03/24/2021, 5:36 PMjulioromano
03/24/2021, 5:36 PMalorma
03/24/2021, 5:37 PMalorma
03/24/2021, 5:37 PMSe7eN
03/24/2021, 6:34 PMCard {
Box(modifier = Modifier.clickable())
}
Sean McQuillan [G]
03/24/2021, 11:49 PMSean McQuillan [G]
03/25/2021, 12:00 AMClickable { // indicator here
Surface { // clipping here
}
}
Inverting that makes it work as expected:
Surface { // clipping here
Clickable { // indicator here
}
}
alorma
03/25/2021, 5:59 AMUli Bubenheimer
01/12/2022, 3:07 PM