The solution i use is
struct BugView: View {
var body: some View {
Form{
ScrollView {
VStack {
Button("Bug"){
print("1")
}
Button("Bug"){
print("2")
}
Button("Bug"){
print("3")
}
}
}
}
}
}