Till the time we have this option available in SwiftUI, we can use [ForEach](https://developer.apple.com/documentation/swiftui/foreach) for hiding the separator.
VStack {
ForEach(permissions) {
PermissionView(permission: $0)
}
.padding(.bottom, 8)
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: