@State var detent : PresentationDetent = .medium //처음 열릴때
VStack{
...
}
.sheet(isPresented: $isShowingSheet) {
NavigationStack{
SomeView()
}.presentationDetents([
.medium,
.large
], selection : $detent)
}
'PROGRAMMING CODE > SWIFT' 카테고리의 다른 글
[Figma] iOS 디자인 래퍼런스 (0) | 2023.09.04 |
---|---|
[Swift] Firestore 데이터 파싱 (0) | 2023.08.29 |
[SwiftUI] UI요소 랜덤위치로 바꾸기 (쥐잡기게임, Timer) (0) | 2023.08.17 |
[Swift] API사용 (0) | 2023.08.16 |
[SwiftUI] Path로 도형그리기 (0) | 2023.08.15 |