Closed CaramelHeaven closed 1 year ago
Example code
let fpc = FloatingPanelController() fpc.backdropView.dismissalTapGestureRecognizer.isEnabled = true fpc.delegate = self fpc.contentInsetAdjustmentBehavior = .always fpc.set(contentViewController: contentVC) let window = UIApplication.shared.windows.first window?.addSubview(fpc.view) fpc.view.snp.makeConstraints { make in make.top.left.right.bottom.equalToSuperview() } fpc.show(animated: true)
Can we add option to handle gesture when we use window ? )
The library doesn't expect this use case but I fixed this issue locally and I'm going to make a pull request. Thanks.
Example code
Can we add option to handle gesture when we use window ? )