티스토리 뷰

📱 SwiftUI

Spacer

James Wetzel 2022. 6. 10. 11:06
728x90
반응형

A flexible space that expands along the major axis of its containing stack layout, or on both axes if not contained in a stack.

struct ChecklistRow: View {
    let name: String

    var body: some View {
        HStack {
            Image(systemName: "checkmark")
            Text(name)
        }
        .border(Color.blue)
    }
}
728x90
반응형