Shivam Dhuria
05/07/2025, 9:08 AMUIKitViewController
. However, it always seems to add a White background to it. I understand there’s a active issue for it but is there a workaround for it?Shivam Dhuria
05/07/2025, 9:10 AMval factory = LocalNativeViewFactory.current
UIKitViewController(
modifier = modifier
.width(100.dp)
.height(50.dp),
factory = {
factory.createTextView(
label = "IOS Text",
)
}
)
struct SimpleIOSText: View {
var label: String
var body: some View {
Text(label)
.font(.headline)
}
}
Shivam Dhuria
05/07/2025, 9:11 AMIvan Matkov
05/07/2025, 10:10 AMShivam Dhuria
05/07/2025, 1:41 PMDylan Sale
05/08/2025, 2:08 AM