Swift cornerRadius修飾子を使ってTextの背景色を角丸にする方法
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS
構文
Text(“xxx")
.background(color.cornerRadius(角の丸み))
Textにbackground修飾子を付与し、background修飾子の引数に背景色を指定します。
cornerRadius修飾子の引数には、角の丸みを指定します。
使用例
struct ContentView: View { var body: xxx View { VStack { Text("Study, Swift Skill") .foregroundColor(.white) .padding() .background(Color.blue.cornerRadius(10)) } } }