
```swift
struct ContentView: View {
var body: some View {
ScrollView {
content
.padding(20)
}
.background(Color(.systemGroupedBackground))
.overlay(alignment: .bottom) {
continueButton
}
}
}
```
```swift
struct ContentView: View {
var body: some View {
ScrollView {
content
.padding(20)
}
.background(Color(.systemGroupedBackground))
.safeAreaInset(edge: .bottom) {
continueButton
}
}
}
```