I'm working with SwiftUI and made a tab bar that looks like this:
The spacing above the icons is pretty minimal, and I'd like to either add some padding to the top of it or increase the height of the bar itself and vertically center the icons.
My code currently looks like this:
TabView{...
}
.accentColor(Color(UIColor.label))
.onAppear{...}
How could I go about this?