Posts

Post not yet marked as solved
1 Replies
408 Views
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") } }
Posted Last updated
.