Quick Tip Icon
Quick Tip

Pin a view to the bottom of safe area in SwiftUI

To permanently position a view at the bottom of the screen in a SwiftUI app, we can place it inside safeAreaInset(edge: .bottom) modifier. For example, if we want to have a text field that is pinned to the bottom of the safe area and moves to the top of the software keyboard when focused, we can achieve it in the following way.

List(messages) { message in
    Text(message.text)
}
.safeAreaInset(edge: .bottom) {
    TextField(
        "New message",
        text: $newMessageText
    )
        .padding()
        .textFieldStyle(.roundedBorder)
        .background(.ultraThinMaterial)
        .onSubmit {
            // append message
        }
}

I'm also adding a material background in my example so that the scrolled content can go underneath the background, rather than being briefly visible below the text field.

Here is the UI we can achieve with just a few lines of code in SwiftUI.

Screenshots of the sample app where the text field is pinned to the bottom.

You can get the full code for this small example from our GitHub repo.

Integrating SwiftUI into UIKit Apps by Natalia Panferova book coverIntegrating SwiftUI into UIKit Apps by Natalia Panferova book cover

Check out our book!

Integrating SwiftUI into UIKit Apps

Integrating SwiftUI intoUIKit Apps

UPDATED FOR iOS 17!

A detailed guide on gradually adopting SwiftUI in UIKit projects.

  • Discover various ways to add SwiftUI views to existing UIKit projects
  • Use Xcode previews when designing and building UI
  • Update your UIKit apps with new features such as Swift Charts and Lock Screen widgets
  • Migrate larger parts of your apps to SwiftUI while reusing views and controllers built in UIKit