정사각형 사이즈 최대로 키우기

x_0o0·2023년 11월 28일
0
post-thumbnail

정사각형 사이즈 최대로 키우기

결론

.aspectRatio(_:contentMode:) -> frame(maxWidth: .infinity) 호출해주면 된다.

설명

아래 사진처럼 정사각형 형태로 뷰를 최대 사이즈로 키우고 싶다면

.aspectRatio(_:contentMode:) -> frame(maxWidth: .infinity) 호출해주면 된다.

Color(.tertiarySystemGroupedBackground)
    .aspectRatio(1, contentMode: .fill)
    .frame(maxWidth: .infinity)
Screen Shot 2023-02-14 at 1 50 23 AM
profile
Swift 를 공부합니다

0개의 댓글