I'm using this code from the very first sample, and i'm getting a fully black screen.
struct SampleTwo: View {
var body: some View {
ZStack {
Color.black
GeometryReader {
Drawer {
EmptyView()
}
.background(color: .blue)
.rest(in: [135, $0.size.height])
}
}.edgesIgnoringSafeArea(.vertical)
}
}
