-
Star
(161)
You must be signed in to star a gist -
Fork
(26)
You must be signed in to fork a gist
-
-
Save mecid/78eab34d05498d6c60ae0f162bfd81ee to your computer and use it in GitHub Desktop.
// | |
// BottomSheetView.swift | |
// | |
// Created by Majid Jabrayilov | |
// Copyright © 2019 Majid Jabrayilov. All rights reserved. | |
// | |
import SwiftUI | |
fileprivate enum Constants { | |
static let radius: CGFloat = 16 | |
static let indicatorHeight: CGFloat = 6 | |
static let indicatorWidth: CGFloat = 60 | |
static let snapRatio: CGFloat = 0.25 | |
static let minHeightRatio: CGFloat = 0.3 | |
} | |
struct BottomSheetView<Content: View>: View { | |
@Binding var isOpen: Bool | |
let maxHeight: CGFloat | |
let minHeight: CGFloat | |
let content: Content | |
@GestureState private var translation: CGFloat = 0 | |
private var offset: CGFloat { | |
isOpen ? 0 : maxHeight - minHeight | |
} | |
private var indicator: some View { | |
RoundedRectangle(cornerRadius: Constants.radius) | |
.fill(Color.secondary) | |
.frame( | |
width: Constants.indicatorWidth, | |
height: Constants.indicatorHeight | |
).onTapGesture { | |
self.isOpen.toggle() | |
} | |
} | |
init(isOpen: Binding<Bool>, maxHeight: CGFloat, @ViewBuilder content: () -> Content) { | |
self.minHeight = maxHeight * Constants.minHeightRatio | |
self.maxHeight = maxHeight | |
self.content = content() | |
self._isOpen = isOpen | |
} | |
var body: some View { | |
GeometryReader { geometry in | |
VStack(spacing: 0) { | |
self.indicator.padding() | |
self.content | |
} | |
.frame(width: geometry.size.width, height: self.maxHeight, alignment: .top) | |
.background(Color(.secondarySystemBackground)) | |
.cornerRadius(Constants.radius) | |
.frame(height: geometry.size.height, alignment: .bottom) | |
.offset(y: max(self.offset + self.translation, 0)) | |
.animation(.interactiveSpring()) | |
.gesture( | |
DragGesture().updating(self.$translation) { value, state, _ in | |
state = value.translation.height | |
}.onEnded { value in | |
let snapDistance = self.maxHeight * Constants.snapRatio | |
guard abs(value.translation.height) > snapDistance else { | |
return | |
} | |
self.isOpen = value.translation.height < 0 | |
} | |
) | |
} | |
} | |
} | |
struct BottomSheetView_Previews: PreviewProvider { | |
static var previews: some View { | |
BottomSheetView(isOpen: .constant(false), maxHeight: 600) { | |
Rectangle().fill(Color.red) | |
}.edgesIgnoringSafeArea(.all) | |
} | |
} |
@tylerlantern How .animation(.interactiveSpring())
is changed to .animation(.interactiveSpring(), value: V)
?
@tylerlantern How
.animation(.interactiveSpring())
is changed to.animation(.interactiveSpring(), value: V)
?
if you use @ptsiogas solution with
.animation(.interactiveSpring(), value: displayType)
or if you use the original
.animation(.interactiveSpring(), value: isOpen)
(only almost a year late)
@ptsiogas can your version support scroll views or lists inside it?
for using the with scrolling list in our solution we change the body
to be scrollable or not based on the displayType
if the displayType is for fullscreen we render a scrollview with the content, otherwise only the content.
(You will need also a way to revert the displayType back to non-full screen after inverted scroll on your scroll list)
(only almost a year late)
@ptsiogas can your version support scroll views or lists inside it?