Disable collapsing Sidebar/NavigationSplitView

I want to keep the sidebar fixed in NavigationSplitView. I don’t want the user to be able to open or close the sidebar. I removed the toggle button, but I still couldn’t make the sidebar stay fixed. It can still be closed using Cmd + Alt + S or by dragging.

What I want is just to disable the resize feature of the sidebar. Isn’t it possible with SwiftUI?

NavigationSplitView is kind of blackhole :)

            LeftSidebarView()
                .environmentObject(detailView)
                .toolbar(removing: .sidebarToggle)
                .navigationSplitViewColumnWidth(240)

Disable collapsing Sidebar/NavigationSplitView
 
 
Q