반응형
Hacking with Swift 사이트의 강좌 번역본입니다.
[원문 : https://www.hackingwithswift.com/quick-start/swiftui/how-to-make-carousel-lists-on-watchos]
How to make carousel lists on watchOS
watchOS는 List를 사용해서 쉽게 복제할 수 있는 특별한 공통적인 목록 스타일을 가지고 있습니다: 목록의 행이 슬라이딩으로 이동하고 화면으로 이동할때 확대되고, 화면을 나갈때 슬라이딩(slide)하고 축소(scale down)합니다. 이것은 chunkier와 그래픽적인 행에 특별히 효과적 입니다 - Apple의 예전 Cover Flow 효과와 거의 비슷합니다.
회전식 효과를 사용하려면, 다음과 같이 .listStyle() modifer와 CarouselListStyle의 새로운 인스턴스를 사용합니다.
.listStyle(CarouselListStyle())
주의: 이것은 watchOS에서만 사용가능합니다.
반응형
'SwiftUI > Cross-platform' 카테고리의 다른 글
How to read the Digital Crown on watchOS using digitalCrownRotation() (0) | 2019.12.02 |
---|---|
How to get translucent lists on macOS (0) | 2019.12.02 |
Learn once, apply anywhere (0) | 2019.12.02 |