-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨#296: 마이페이지의 필터링 클릭 시, 빈화면의 지역필터링 모달 띄움 (나머지 지역필터링 UI 추가 예정)
- Loading branch information
Showing
3 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
.../StreetDrop/Presentation/MyPage/View/FilterModal/RegionFilteringModalViewController.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,36 @@ | ||
// | ||
// RegionFilteringModalViewController.swift | ||
// StreetDrop | ||
// | ||
// Created by 차요셉 on 7/30/24. | ||
// | ||
|
||
import UIKit | ||
|
||
import SnapKit | ||
import RxSwift | ||
|
||
final class RegionFilteringModalViewController: UIViewController, ModalPresentable { | ||
var upperMarginHeight: CGFloat = 158 | ||
var containerViewTopConstraint: Constraint? | ||
let disposeBag: DisposeBag = .init() | ||
|
||
let modalContainerView: UIView = { | ||
let view: UIView = .init() | ||
view.backgroundColor = .gray800 | ||
|
||
return view | ||
}() | ||
|
||
override func viewDidLoad() { | ||
super.viewDidLoad() | ||
setupModal() | ||
configureUI() | ||
} | ||
} | ||
|
||
private extension RegionFilteringModalViewController { | ||
func configureUI() { | ||
|
||
} | ||
} |
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