Change the tab selection color in TabBar SwiftUI

后端 未结 1 1045
执念已碎
执念已碎 2021-02-02 13:59

I am trying to change the color of selected tab in TabBar, but nothing worked. I can change the TabBar backgroundColor by writing

struct Co         


        
相关标签:
1条回答
  • 2021-02-02 14:22

    Use accentColor: https://developer.apple.com/documentation/swiftui/tabview/3368073-accentcolor

    TabView {
      // fill this out with your tabbed content
    }
    .accentColor(.orange)
    

    0 讨论(0)
提交回复
热议问题