[TIL/Swift] Text가 전체 width 차지하도록 만들기

pendant.kpendant.k
1 min read

Text가 전체 width 영역을 차지하도록 만들기

Text()VStack() 내에서 전체 영역을 차지하도록 하기 위해 다음과 같이 HStack()을 활용했다.

import SwiftUI

struct SignUpTitleText: View {
    let title: String

    var body: some View {
        HStack {
            Text(title)
                .font(.pretendardSemiBold24)
                .foregroundStyle(.black80)
                .fixedSize(horizontal: false, vertical: true)

            Spacer()
        }
        .padding(.bottom, 24.0)

    }

}

HStack() 내에서 Spacer()를 활용해 좌,우,중앙 정렬이 가능하다.

0
Subscribe to my newsletter

Read articles from pendant.k directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

pendant.k
pendant.k

iOS / Flutter Developer