์์ : ์๋ ์ฝ๋๋ฅผ ์คํ์ํค๋ฉด 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() } } ํด๊ฒฐ๋ฐฉ๋ฒ :..