alexhelder
03/02/2025, 1:06 PMIconButton
, internally it has:
Box(modifier = Modifier.size(IconButtonDefaults.smallContainerSize())) {
content()
}
How do I use IconButtonDefaults.xSmallContainerSize
instead of smallContainerSize
… even though its public i don’t see a way to specify it — trying to set the size directly on the IconButton
doesn’t quite work right.zt
03/02/2025, 3:40 PM