Skip to content

Instantly share code, notes, and snippets.

@christianselig
Created May 21, 2024 19:02
Show Gist options
  • Save christianselig/7f79bf92e71550f3d3f0749b312e8969 to your computer and use it in GitHub Desktop.
Save christianselig/7f79bf92e71550f3d3f0749b312e8969 to your computer and use it in GitHub Desktop.
import SwiftUI
struct ContentView: View {
var body: some View {
NavigationStack {
Text("Welcome to my ice cream store")
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItemGroup(placement: .topBarLeading) {
Button {
print("go back pls")
} label: {
Image(systemName: "chevron.left")
}
.disabled(true)
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment