I have a VStack with a list of items. I noticed that there's no padding for the first item. But there's padding for the gaps between each items. I am wondering how I can put a padding on the top.
The code looks like this:
VStack {
item1
item2
item3
Spacer()
}
I have tried to add a padding() on the top of VStack, but I got hang'ed without error message:
VStack {
padding()
item1
item2
item3
Spacer()
}

