Meet
09/10/2025, 9:51 AMUIKitView(
factory = {
UIButton.buttonWithType(UIButtonTypeSystem).apply {
setTitle("Hello world", UIControlStateNormal)
setTitleColor(UIColor.systemBlueColor, UIControlStateNormal)
titleLabel?.font = UIFont.systemFontOfSize(17.0)
}
}, modifier = modifier.wrapContentSize()
)
if i use wrapcontentsize it not work. but i use size define after it work.
modifier = modifier.fillMaxWidth().height(100.dp)
Andrei Salavei
09/10/2025, 1:09 PMMeet
09/10/2025, 3:06 PMMeet
09/11/2025, 4:46 AM