I need to handle swiftUI pages button's actions like click get lables etc from another normal swift class. I can handle such action using Viewcontroller but if page is designed with SwiftUI, i could not able to find anything.
If you want to move all the button logic on a class, use a class referenced from the view, this class should be a @StateObject variable, and you can call yourClass.method() when the button is tapped on.