View의 데이터 RefreshAction으로 새로고침하기 (Refreshable modifier)
·
SwiftUI
Refreshable modifier이메일 앱처럼 밑으로 그래드하여 새로고침하는 기능을 사용할 수 있습니다  애플 공식 문서에 나와있는 예제 코드는 다음과 같습니다List(mailbox.conversations) { conversation in ConversationCell(conversation)}.refreshable { await mailbox.fetch()} 위에 코드처럼 List로도 사용할 수 있고 ScrollView를 이용한 ForEach로도 사용할 수 있습니다.NavigationStack { ScrollView { VStack { ForEach(viewModel.items, id: \.self) { item in Te..
ytw_developer
'swiftui refreshable' 태그의 글 목록