Hi, I'm using a TabView and for a given case I wish to have the icon of the Tab animated by symbolEffect to signify a state.
The symbolEffect however doesn't seem to have an effect when used on a tab's label image. Is it really not possible?
Tab(value: .hello) { EmptyView() } label: {
Image(systemName: "hand.wave.fill")
.symbolEffect(.wiggle, options: .repeating)
}
I still wish to use the TabView because it's amazing.