GroupBoxRowView

PHOTO EMBED

Mon Jan 31 2022 18:25:24 GMT+0000 (Coordinated Universal Time)

Saved by @joeavargas

struct GroupBoxRowView: View {
    
    var name: String
    var content: String? = nil
    var linkLabel: String? = nil
    var linkDestination: String? = nil
    
    var body: some View {
        VStack {
            Divider().padding(.vertical, 4)
            
            HStack {
                Text(name).foregroundColor(Color.gray)
                Spacer()
                if (content != nil) {
                    Text(content!)
                } else if (linkLabel != nil && linkDestination != nil) {
                    Link(linkLabel!, destination: URL(string: "https://\(linkDestination!)")!)
                    Image(systemName: "arrow.up.right.square").foregroundColor(.pink)
                } else {
                    EmptyView()
                }
            }
        }
    }
}

struct SettingsRowView_Previews: PreviewProvider {
    static var previews: some View {
        GroupBoxRowView(name: "Developer", content: "Joe Vargas")
            .previewLayout(.fixed(width: 375, height: 60))
            .padding()
        
        GroupBoxRowView(name: "Website", linkLabel: "Medium", linkDestination: "joeavargas.medium.com")
            .preferredColorScheme(.dark)
            .previewLayout(.fixed(width: 375, height: 60))
            .padding()
    }
}
content_copyCOPY