Post

Replies

Boosts

Views

Activity

Reply to Hide separators in List (SwiftUI)
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)     }
Feb ’21