mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 22:03:37 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
12 lines
339 B
Swift
12 lines
339 B
Swift
final class RouteManagerFooterView: UIView {
|
|
@IBOutlet private weak var cancelButton: UIButton!
|
|
@IBOutlet private weak var planButton: UIButton!
|
|
@IBOutlet weak var separator: UIView!
|
|
@IBOutlet weak var background: UIView!
|
|
var isPlanButtonEnabled = true {
|
|
didSet {
|
|
planButton.isEnabled = isPlanButtonEnabled
|
|
}
|
|
}
|
|
}
|