9 lines
286 B
Swift
9 lines
286 B
Swift
// Copyright 2018 the FloatingPanel authors. All rights reserved. MIT license.
|
|
|
|
import UIKit
|
|
|
|
/// A view that presents a backdrop interface behind a floating panel.
|
|
public class FloatingPanelBackdropView: UIView {
|
|
public var dismissalTapGestureRecognizer: UITapGestureRecognizer!
|
|
}
|