David

Results 4 comments of David

Closing due to inactivity, feel free to reopen if you're still having this issue

@Abichaljha1993 I'm able to get our example to work without any issues: ``` struct CustomMessageCenterViewStyle: MessageCenterViewStyle { @ViewBuilder func makeBody(configuration: Configuration) -> some View { if #available(iOS 16.0, *) {...

The line of code you commented on Is creating the SwiftUI `MessageCenterView` then doing nothing with it: ``` /// This line of code not executing properly. MessageCenterView() .messageCenterViewStyle( CustomMessageCenterViewStyle() )...

SwiftUI views can be used inside UIKit with UIHostingViewControllers. That way you can customize it however you like in SwiftUI using the style overrides we discussed while still retaining the...