[SwiftUI] 이미지를 화면 가득 채우고 싶습니다.

소개



SwiftUI의 이미지 주위를 만지고 있고, 어땠는지 몰랐던 곳을 되도록 과거의 자신에게 알기 쉽게 쓰고 있습니다.

원본 이미지



SwiftUI의 Apple 공식 튜토리얼에서 이미지를 빌렸습니다.


목표



이미지를 화면 가득 채우기

실패 예 ①





ContentView.swift
Image("image")
            .resizable()
            .frame(width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height)

이미지의 종횡비를 무시하고 강제로 크기를 확대했습니다.
하지만 조금 틈이 있습니다.

실패 예②





ContentView.swift
Image("image")
            .resizable()
            .aspectRatio(contentMode: .fill)

양쪽 끝에 틈이 있습니다.

성공





ContentView.swift
Image("image")
            .resizable()
            .aspectRatio(contentMode: .fill)
            .edgesIgnoringSafeArea(.all)



상태 바를 숨기고 싶을 때





ContentView.swift
Image("image")
            .resizable()
            .aspectRatio(contentMode: .fill)
            .edgesIgnoringSafeArea(.all)
            .statusBar(hidden: true)

끝까지 봐 주셔서 감사합니다!

github( htps : // 기주 b. 코 m / 료스케 카미 무라 / 슈 f 드_에 x 텐 d_ )

좋은 웹페이지 즐겨찾기