Modal View (sheet)
·
SwiftUI
Modal 는 상호 작용을 제공하는 별도의 보기로 콘텐츠를 표시하는 뷰 입니다. 가장 대표적인 Modal 를 사용하는 방법은 다음과 같습니다. 아래 메서드들의 공통점은 특정 값을 지정하여 해당 값이 변했을 경우 Modal이 나타나게 합니다.func sheet(isPresented: Binding, onDismiss: Closure, content: Closure)Presents a sheet when a binding to a Boolean value that you provide is true.func sheet(item: Binding, onDismiss: Closure, content: Closure) Presents a sheet using the given item as a data source..
ytw_developer
'swiftui modal view' 태그의 글 목록