SwiftUI Vertical Divider
Using the standard Divider view and setting its width to 1 will create a vertical divider: Divider().frame(width: 1)
Example in action:
struct VerticalDividerExample: View {
var body: some View {
HStack(spacing: 20) {
Text("Lef...
blog.neat.software1 min read