12 lines
362 B
Swift
12 lines
362 B
Swift
// Copyright 2018-Present Shin Yamamoto. All rights reserved. MIT license.
|
|
|
|
import UIKit
|
|
|
|
/// A view that presents a backdrop interface behind a panel.
|
|
@objc(FloatingPanelBackdropView)
|
|
public class BackdropView: UIView {
|
|
|
|
/// The gesture recognizer for tap gestures to dismiss a panel.
|
|
public var dismissalTapGestureRecognizer: UITapGestureRecognizer!
|
|
}
|