๋ฐ์ํ
์์ :
์๋ ์ฝ๋๋ฅผ ์คํ์ํค๋ฉด
struct Title: View {
var body: some View {
VStack {
Text("Statistics")
Rectangle()
.foregroundColor(.red)
.frame(height: (5.0))
}
}
}
๋ฐ์ํ
์์ ๊ฐ์ด ๋นจ๊ฐ์ค์ด ์๊ธด๋ค.
ํ์ง๋ง ๋ด๊ฐ ์ํ๋ ๊ฑด..!!
์ด๋ ๊ฒ text ์ฌ์ด์ฆ์ ๋ง์ถฐ์ frameํฌ๊ธฐ๊ฐ ์ง์ ๋๊ธธ ๋ฐ๋๋ค.
๋ค์๊ณผ ๊ฐ์ด ์ฝ๋๋ฅผ ์์ ํ๋ฉด ๋๋ค !!!!
struct Title: View {
var body: some View {
VStack {
Text("Statistics")
Rectangle()
.foregroundColor(.red)
.frame(height: (5.0))
}.fixedSize()
}
}
ํด๊ฒฐ๋ฐฉ๋ฒ :
Text()๋ฅผ Vstack์ผ๋ก ๊ฐ์ธ๊ณ Vstack์ .fixedSize()๋ฅผ ์ ์ฉํด์ค๋น
++ ์ถ๊ฐ!!
fixedSize()์๋ horizontal, vertical๋ณ์๊ฐ ์์ด์ ๋ด๊ฐ ์ ํํด์ ๊ณ ์ ํ๊ณ ์ถ์ ํญ์ ์ ํ ์ ์๋ค
์ : ์ธ๋กํญ์ text ์ฌ์ด์ฆ์ ๋ง์ถ๊ณ ์ถ์๋ฐ ๊ฐ๋กํญ์ 100์ผ๋ก ๊ณ ์ ๋์์ผ๋ฉด ์ข๊ฒ ๋ค!
VStack {
VStack {
Text("Hello")
.foregroundColor(Color.black)
}
.fixedSize(horizontal: false, vertical: true)
}
.frame(width: 100)
728x90
๋ฐ์ํ