PartialSheet icon indicating copy to clipboard operation
PartialSheet copied to clipboard

A SwiftUI Partial Sheet fully customizable with dynamic height

Results 30 PartialSheet issues
Sort by recently updated
recently updated
newest added

Fix bug where using a segmented picker within a PartialSheet leads to unresponsive picker. Remove call to onTapGesture method in iPhoneSheet builder. As pointed out by @ajevans99, SwiftUI seems to...

Earlier it was working fine now i get this error. Has there been any recent update which causes it to not run on stimulator?

Typo on comments of `AddFrameTracker`

When I add `@Environment(\.scenePhase) var scenePhase`,partialSheet will auto close and never show again ```Swift import SwiftUI import PartialSheet @main struct nnonoApp: App { @State private var isPresented = false @Environment(\.openURL)...

Use GestureState. It will reset to default value if Gesture no longer active

### Description If user used more than one finger, The `DragGesture.onEnded(_:)` will not be called up. ### Environment Xcode Version 14.0 beta (14A5228q) iPhone 12 Pro Max 15.5 (19F77) ###...

## This is mentioned in https://github.com/AndreaMiotto/PartialSheet/issues/65. To be accurate, it's here >>>I have looked a bit more into it and it is indeed the dragGesture that takes over the whole...

Hi, I have the following issue: When displaying the bottom sheet over a TabBar the TabBar is still visible and not covered by the bottom sheet. The .partialSheet(isPresented: Binding) {...

### What's the issue? Using the [`enabled(_:)`](https://github.com/AndreaMiotto/PartialSheet/blob/415fafa8ed719613b3abc787d52a8aa32a4998b9/Sources/PartialSheet/PartialSheet/PSIphoneStyle.swift#L25-L28) `PSCoverStyle`, it's possible for users to dismiss a presented PartialSheet by tapping the space behind the content. However, this makes it very easy...

Hi, I've constructed a partial sheet that basically has 3 rows of ScrollViews (horizontal). Each has 2 to 4 items, and the contents are static. Both PartialSheet 2.0 and 3.0...