ViewInspector icon indicating copy to clipboard operation
ViewInspector copied to clipboard

Feature Request: support `Tab`

Open nh7a opened this issue 1 month ago • 0 comments

tabView().count for the view below returns 1 instead of 3. Tab is a new (iOS 18) component for TabView.

TabView {
    Tab("Received", systemImage: "tray.and.arrow.down.fill") {
        ReceivedView()
    }
    Tab("Sent", systemImage: "tray.and.arrow.up.fill") {
        SentView()
    }
    Tab("Account", systemImage: "person.crop.circle.fill") {
        AccountView()
    }
}

nh7a avatar Nov 10 '25 16:11 nh7a