I’m partly refactoring my app from Storyboards to ...
# compose-ios
n
I’m partly refactoring my app from Storyboards to Compose multiplatform. Somehow by default my native iOS ui’s don’t respond to dynamic text, but the compose multiplatform based screen do. Is it possible to disable this and do you guys know how? So far I couldn’t find anything helpfull 😞
Adding below code solved my issue (I’ve created a generic struct / class for loading Multiplatform UI in swift)
Copy code
if #available(iOS 15.0, *) {
            hostingController.view.minimumContentSizeCategory = .medium
            hostingController.view.maximumContentSizeCategory = .medium
        }