SF Symbols 3 Bug

I am currently using the latest Mac OS beta, Xcode 13, and iOS 15.

For some reason whenever I add an sf symbol into my app it puts the fill version of the symbol no matter what I do I can't change it. I've tried creating a custom icon that looks identical through the sf symbols app but nothing is being rendered.

Replies

no matter what I do I can't change it

Could you show what you try to change it ?

  • I've tried using rendering modes, I've tried making a custom symbol that looks identical (" when I do that nothing is rendered "). I've tried turning off the accent color.

  • Could you post the code (not an image) so that we can try reproduce ? And please post all the classes needed ti run the code.

Add a Comment

`struct ViewsContainer: View {

    @State var currentView = "Feed"

    @EnvironmentObject private var session:SessionStore

    var body: some View {

        VStack {

            TabView() {//TabView

                

                //MARK: Feed

                Feed(finishedLoading: $session.finishedLoading).tabItem {

                    Label("Feed", systemImage: "house")

                }.zIndex(1)

                //End Feed

                 

                //MARK: Crew

                Crew().tabItem {

                    Label("Crew", systemImage: "person.3")

                }.zIndex(1)

                //End Crew

                

                //MARK: MapView

                MapView().tabItem {

                    Label("Map", systemImage: "map")

                }.zIndex(1)

                //End Map

                

                //MARK: Fitness

                Fitness().tabItem {

                    Label("Fitness", systemImage: "figure.walk.circle")

                }.zIndex(1)

                //End Fitness

                

                //MARK: Settings

                Profile().tabItem {

                    Label("Profile", systemImage: "person").symbolRenderingMode(.monochrome)

                }.zIndex(1)

                //End Settings

                

                

            }// End of TabView

            .accentColor(Color("PrimaryColor"))

            .zIndex(1)

        }// End of VStack

    }// End of body

}`

  • Thanks, but we miss a lot of code to be able to test.

  • you should be able to just have a tab view and test it out

  • Sure, but there may be some issue elsewhere, so it is always better to test the same code. But I understand you cannot show this code. So, wish you good continuation.