SwiftUI - Text Modifier을 이용하여 스타워즈 효과
import SwiftUI
struct ContentView: View {
var body: some View {
Text("""
The dead speak! The galaxy has heard a mysterious broadcast, a threat of REVENGE in the sinister voice of the late EMPEROR PALPATINE.
GENERAL LEIA ORGANA dispatches secret agents to gather intelligence, while REY, the last hope of the Jedi, trains for battle against the diabolical FIRST ORDER.
Meanwhile, Supreme Leader KYLO REN rages in search of the phantom Emperor, determined to destroy any threat to his power....
""")
.font(.system(.title))
.fontWeight(.black)
.foregroundColor(.yellow)
.background(Color.black)
.lineLimit(10)
.multilineTextAlignment(.center)
.truncationMode(.head)
.lineSpacing(10.0)
.padding()
.rotation3DEffect(
.degrees(45),
axis: (x: 1.0, y: 0.0, z: 0.0)
)
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
Author And Source
이 문제에 관하여(SwiftUI - Text Modifier을 이용하여 스타워즈 효과), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sionkim00/SwiftUI-Text-Modifier을-이용하여-스타워즈-효과저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)