Tagging Screens

You can tag screens using the following method:

Note: In SwiftUI applications, specifying a screen name is mandatory for accurate event tracking and screen-level analytics.


For SwiftUI View:

var body: some View {
    ZStack {
        // Your view content
    }
    .vwoTagScreenName(screenName: "ScreenName")
}

This helps in identifying user interactions and analyzing behavior at the screen level.