Is HSplitView or VSplitView working for anyone?

I have the following code in a file:


import SwiftUI

struct ContentView : View {
    var body: some View {
        HSplitView{
            Text("Placeholder")
            Text("Placeholder")
        }
    }
}

#if DEBUG
struct ContentView_Previews : PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}
#endif


And I get "Use of unresolved identifier 'HSplitView'". Same happens with VSplitView.


Does anyone else have this issue? Is it a bug in the current version?

It's also not working for me. Maybe we should wait for the next Xcode Beta version. Could be just missing in our version. The "Form" control shown in the talk 216 (WWDC 2019) is also (currently) not available.

As of date of this post, HSplitView & VSplitView do not appear to be working. No errors but no effect either.

Is HSplitView or VSplitView working for anyone?
 
 
Q