TipKit: how to show a popover tip on a SwiftUI tabItem

Is there any way i can show popover tip on tabItem inside of TabView

    TabView(selection: selected) {
        Group{
            HomeView()
                .tabItem {
                    Label {
                        Text("Home")
                    } icon: {
                        Image(selected==1 ? "home-icon" : "home-unselect")
                    }
                    // show tip over the Home icon
                }
                .tag(1)
        }
    }
TipKit: how to show a popover tip on a SwiftUI tabItem
 
 
Q