Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ extension RunningWaitingVC {
view.bringSubviewToFront(moreButton)

mapView.snp.makeConstraints { make in
make.edges.equalTo(view.safeAreaLayoutGuide)
make.leading.trailing.equalTo(self.view.safeAreaLayoutGuide)
make.top.equalTo(naviBar.snp.bottom)
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

네이버 로고를 보이게 해준 코드네요 ,, 확인 했습니다 ~

make.bottom.equalToSuperview()
}

distanceContainerView.snp.makeConstraints { make in
Expand All @@ -206,7 +208,7 @@ extension RunningWaitingVC {
startButton.snp.makeConstraints { make in
make.leading.trailing.equalTo(view.safeAreaLayoutGuide).inset(16)
make.height.equalTo(44)
make.top.equalTo(view.snp.bottom).offset(34)
make.top.equalTo(view.snp.bottom).offset(24)
}
}

Expand Down