-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only allow city if other waterbody, tweak for new validation
- Loading branch information
1 parent
a456e33
commit 4a577f9
Showing
9 changed files
with
278 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
ipad/ViewControllers/Shared cells/Blank/BlankCollectionViewCell.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// BlankCollectionViewCell.swift | ||
// ipad | ||
// | ||
// Created by Claveau, David LWRS:EX on 2024-02-12. | ||
// Copyright © 2024 Amir Shayegh. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
class BlankCollectionViewCell: UICollectionViewCell, Theme { | ||
|
||
@IBOutlet weak var blank: UIView! | ||
|
||
override func awakeFromNib() { | ||
super.awakeFromNib() | ||
} | ||
|
||
func setup(visible: Bool) { | ||
blank.alpha = visible ? 1 : 0 | ||
} | ||
|
||
} |
Oops, something went wrong.