VesselWheel

문자를 화면에 출력하는 컨트롤 본문

Xcode Study

문자를 화면에 출력하는 컨트롤

JasonYang 2023. 10. 16. 14:46

//

//  ContentView.swift

//  ex02

//

//  Created by tjoeun on 2023/04/15.

//

 

import SwiftUI

 

struct ContentView: View {

    var body: some View {

        

        // 문자를 화면에 출력하는 컨트롤

        Text("스위프트 UI \n스위프트 UI 5.17 \n스위프트 UI")

        .padding(.all, 12.0)

        .padding()

        .font(.system(size:50))

        .fontWeight(/*@START_MENU_TOKEN@*/.semibold/*@END_MENU_TOKEN@*/)

        .foregroundColor(Color.orange)

        .multilineTextAlignment(.center)

        .frame(width:300, height: 300)

        .lineLimit(5)

        .border(Color.red, width:6)

        .background(Color.blue)

    }

}

 

struct ContentView_Previews: PreviewProvider {

    static var previews: some View {

        ContentView()

    }

}

'Xcode Study' 카테고리의 다른 글

Stack with spacer()  (0) 2023.10.16
V, S, Z stack and divider  (0) 2023.10.16
ContentView(SwiftUI)  (0) 2023.10.16
Raw String  (0) 2023.10.16
Foundation String  (1) 2023.10.16