μμ λ‘κ² λμμΈκ³Ό UXλ₯Ό 컨νΈλ‘€ν μ μλ BottomSheet λ₯Ό νννκΈ° μν΄ μ§μ ꡬννκ² λμμ΅λλ€.
μμ SwiftUI λ§ μ¬μ©ν΄ Transition, Animation λ±μ ꡬννμμ΅λλ€.
DragGesture μ μ¬μ©νμ΅λλ€.
struct ContentView: View {
@State private var isShowBottomSheet = false
var body: some View {
BottomSheetView(isShowBottomSheet: $isShowBottomSheet) {
VStack {
Text("Tap Me")
.onTapGesture {
withAnimation {
isShowBottomSheet = true
}
}
}
}
}
}