I'm getting this error with the following code, using Xcode Beta 15
Drawer({
ZStack {
Color.blue
VStack {
ForEach(0..<100) {
Text("item ($0)")
}
}
}
}, handle: {
DrawerHandles.defaultHandle
})
.scrollableContent()
.background(color: .blue)
.handle(height: 6, padding: 10)
.rest(in: [135, $0.size.height])
.interactive(in: [$0.size.height])