UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Sidebar that can't be collapsed (in macOS)

Forums > SwiftUI

So I'm trying to create a Sidebar that can't be collapsed but can't figure out how, any ideas?

Also, how come the selected option in the sidebar (set in onAppear) does not get the blue background from the start?

Relevant code below:

struct ContentView: View {
  enum Menu: String, CaseIterable {
    case this = "This"
    case that = "That"
    case theOther = "The Other"
  }

  @State private var selection: Menu? = .this

  var body: some View {
    NavigationView {
      // Sidebar view
      List(Menu.allCases, id: \.self, selection: $selection) { menuItem in
        Text(menuItem.rawValue)
          .font(.subheadline)
          .padding(5)
      }
      .listStyle(SidebarListStyle())
      .frame(minWidth: 150, maxWidth: 150)
      .onAppear {
        self.selection = .that
      }

      // Detail view
      Text(selection?.rawValue ?? "Default view")
        .font(.largeTitle)
        .frame(maxWidth: .infinity, maxHeight: .infinity)
    }
    .frame(minWidth: 400, minHeight: 200)
  }
}

4      

@frios  

It is my understanding that the non-selection of the item in the sidebar is a SwiftUI bug. Same happes to me and I thing twostraws mentions it in a video he produced on HWS+.

3      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.