[SwiftUI] Stack을 이용한 레이아웃


[SwiftUI] Stack을 이용한 레이아웃

Stack의 종류 1. HStack : 좌우 2. Vstack : 위아래 3. ZStack : 겹 struct ProfileView: View { var body: some View { Zstack(alignment: .bottom) { Image("ProfilePicture") .resizable() .aspectRatio(contentMode: .fit) HStack { VStack(alignment: .leading) { Text("Rachael Chiseck") .font(.headline) Text("Chief Executive Officer") .font(.subheadline) } Spacer() } .padding() .foregroundColor(.primary) .background(Color.primary .colorInvert() .opacity(0.75)) } } }...



원문링크 : [SwiftUI] Stack을 이용한 레이아웃