Post

Replies

Boosts

Views

Activity

UITabBar in iOS 15 forces filled SFSymbols (SwiftUI)
The iOS 15 UITabBar is using filled SFSymbols, although I had specified outlined symbols! Is it possible to get the UITabBar to behave like in iOS 14 and displaying the outlined symbols like intended? TabView { ArticleListView(articles: model.calls, title: "...").tabItem { Text("Calls") Image(systemName: "doc.append") } ArticleListView(articles: model.news, title: "...").tabItem { Text("News") Image(systemName: "newspaper") } ArticleListView(articles: model.events, title: "...").tabItem { Text("Events") Image(systemName: "calendar") } MoreView().tabItem { Text("More") Image(systemName: "ellipsis") } }
1
0
809
Sep ’21