Is there a way with SwiftUI to align content directly to the top of a sheet instead of in the middle?
My sheet is just a simple Text view.
>Solution :
Use a spacer to move it at top, like
VStack {
Text("Your text")
Spacer() // << here !!
}