Last active
September 24, 2021 00:55
-
-
Save gtokman/cf47c409bc4a31a1403ef4bb45ce447d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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