UBottomSheet
UBottomSheet copied to clipboard
iPhone Maps App bottom sheet - A Protocol Oriented Approach
In ViewController i've set ``` override func viewWillLayoutSubviews() { guard sheetCoordinator == nil else {return} sheetCoordinator = UBottomSheetCoordinator(parent: self) } ``` and when click button in ViewController ``` let vc...
Is there a way to present the sheet over the tab bar? (or hide the tab bar before the sheet shows)
I tried using Z indexes but it doesn't work. Is there some other way?
Hi OfTheWolf, This package looks great! Is there any way to integrate it into an app with SwiftUI? Maybe using UIViewControllerRepresentable? I can't seem to find any package delivering the...
In the map demo, the search bar is not draggable, but the apple map app dose.
I have to show only header with some info. image atttached. How to achieve this. [ ](url) On the click of Upper arrow, it should expand according to tableview content...
In file UBottomSheetCoordinator.swift line 309 sSelf.container!.frame can cause a crash. It happen only once since I started to use this framework....
Please take a look at `if velocity.y < 100 { /// dragging up` It should be `if velocity.y < -100 { /// dragging up` As I understand this is for...
I have a `UITableView` which contains only 2 or 3 rows. So I want to set the height of the BottomSheet to UITableView's content height. How do I achieve this?
I just need exactly same behaviour but being animated from top to bottom (i.e. exactly vice-versa of what is now). Thank you in advance
Hello, I want to use dynamic height of bottom sheet, I followed the pull to dismiss from example, created a static variable of my content height but before get content...