Skip to content

Instantly share code, notes, and snippets.

@gtokman
Last active September 24, 2021 00:55
Show Gist options
  • Save gtokman/cf47c409bc4a31a1403ef4bb45ce447d to your computer and use it in GitHub Desktop.
Save gtokman/cf47c409bc4a31a1403ef4bb45ce447d to your computer and use it in GitHub Desktop.
NavigationView {
List {
ForEach(businesses) { business in
Text(business.name)
}
// Swipe actions
.swipeActions(
edge: .trailing,
allowsFullSwipe: true,
content: {
Button("Delete", role: .destructive) { // do something }
}
)
}
.listStyle(.plain)
.navigationTitle(Text("Boston"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment