I have a TabView
with custom icons - like this:
PastView( settings ).tabItem
{
Image("past")
Text("Past")
}.tag(1)
which works great - but just the text changing color is very subtle - it's not obvious which tab is "current". I want to make it much more obvious by doing something to the image. I've tried all of thse
Image("past").shadow( radius:5 )
Image("past").border( Color.red, width:8 )
Image("past").background( Color.green )
but none of them have any effect at all - and I don't really understand why