I recently moved my watch app from InterfaceController to the SwiftUI LifeCycle, but I've encountered some issues.
In my app, I'm using group notifications. Before I moved to the SwiftUI LifeCycle, when I received a group notification with the same thread identifier, it appeared as a stack in the notification center of the watch. When I touched the stack, it extended with individual notifications. However, after moving to the SwiftUI LifeCycle, when I touch the stack, it only shows the first notification of the stack and doesn't display the extended notifications.
Do I need a custom group notification view in the SwiftUI LifeCycle, similar to the Message App? Is there any other way to use the previous static group notification view? Please help me!