ZStack(alignment: )1 ZStack에서 배경색을 설정할 때 alignment가 적용되지 않을 때 1. background()를 사용해서 ZStack에 배경색을 설정할 때 -> alignment 속성 적용 X struct FirstOnBoardingView: View { var body: some View { GeometryReader { geometry in ZStack(alignment: .topLeading) { Image("Capsule") .resizable() .scaledToFit() .frame(width: geometry.size.width * 0.5, height: geometry.size.height * 0.5) .offset(x: -geometry.size.width * 0.15, y: -geometry.size.height * 0.15) .background(Color.whit.. 2023. 10. 31. 이전 1 다음