Skip to content

Commit

Permalink
[Feat/#384] 장소 목록 뷰에서 컬렉션뷰의 하단 여백 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanMinsung committed Jan 18, 2025
1 parent 0d661ac commit 5c3f3e3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class PlaceListView: UIView {
layout.sectionInset = .init(
top: collectionViewVerticalInset,
left: collectionViewHorizontalInset,
bottom: collectionViewVerticalInset,
bottom: 40,
right: collectionViewHorizontalInset
)
layout.minimumLineSpacing = 16
Expand Down Expand Up @@ -104,11 +104,13 @@ extension PlaceListView {
unvisitedPlacesCollectionView.backgroundColor = .primary(.listBg)
unvisitedPlacesCollectionView.indicatorStyle = .black
unvisitedPlacesCollectionView.setEmptyStateMessage(EmptyCaseMessage.unvisitedPlaceList)
unvisitedPlacesCollectionView.contentInsetAdjustmentBehavior = .never

allPlacesCollectionView = ScrollLoadingCollectionView(frame: .zero, collectionViewLayout: layoutMaker)
allPlacesCollectionView.backgroundColor = .primary(.listBg)
allPlacesCollectionView.indicatorStyle = .black
allPlacesCollectionView.setEmptyStateMessage(EmptyCaseMessage.placeList)
allPlacesCollectionView.contentInsetAdjustmentBehavior = .never
}

private func setupHierarchy() {
Expand Down

0 comments on commit 5c3f3e3

Please sign in to comment.