Is it possible to set default height proportions of embedded views in VSplitView (MacOS)

I have a VSplitView with two views inside. But each time app starts proportions are set to 50/50, each one has the same height. I would like to set height of one of them to some number, (and save it in defaults... not most important thing). Of course I would like to change this height manually if I need to.

    var body: some View {
        return VSplitView {
            HigherView(with: someContent) // Let it be float height
            ShorterView(with: anotheContent) // let it height will be 300 when fired first time
       }
    }

Is it very hard?

You could add .frame modifier to set any height

Is it possible to set default height proportions of embedded views in VSplitView (MacOS)
 
 
Q