-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from OMZigak/feat/146-schedule-detail
[feat] 약속 상세 화면 SegmentedControl 구현 및 약속 상세 뷰 구현
- Loading branch information
Showing
25 changed files
with
645 additions
and
182 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
6 changes: 3 additions & 3 deletions
6
KkuMulKum/Resource/Assets.xcassets/Image/img_profile.imageset/Contents.json
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
Binary file added
BIN
+1.21 KB
KkuMulKum/Resource/Assets.xcassets/Image/img_profile.imageset/ic_profilebasic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.6 KB
...lKum/Resource/Assets.xcassets/Image/img_profile.imageset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.17 KB
...lKum/Resource/Assets.xcassets/Image/img_profile.imageset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-1.23 KB
KkuMulKum/Resource/Assets.xcassets/Image/img_profile.imageset/profileBasic.png
Binary file not shown.
Binary file removed
BIN
-2.65 KB
KkuMulKum/Resource/Assets.xcassets/Image/img_profile.imageset/[email protected]
Binary file not shown.
Binary file removed
BIN
-4.25 KB
KkuMulKum/Resource/Assets.xcassets/Image/img_profile.imageset/[email protected]
Binary file not shown.
38 changes: 38 additions & 0 deletions
38
KkuMulKum/Resource/Color.xcassets/gray0.colorset/Contents.json
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,38 @@ | ||
{ | ||
"colors" : [ | ||
{ | ||
"color" : { | ||
"color-space" : "srgb", | ||
"components" : { | ||
"alpha" : "1.000", | ||
"blue" : "0xF7", | ||
"green" : "0xF7", | ||
"red" : "0xF7" | ||
} | ||
}, | ||
"idiom" : "universal" | ||
}, | ||
{ | ||
"appearances" : [ | ||
{ | ||
"appearance" : "luminosity", | ||
"value" : "dark" | ||
} | ||
], | ||
"color" : { | ||
"color-space" : "srgb", | ||
"components" : { | ||
"alpha" : "1.000", | ||
"blue" : "0xF7", | ||
"green" : "0xF7", | ||
"red" : "0xF7" | ||
} | ||
}, | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
KkuMulKum/Source/Promise/Cell/ParticipantCollectionViewCell.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,39 @@ | ||
// | ||
// ParticipantCollectionViewCell.swift | ||
// KkuMulKum | ||
// | ||
// Created by YOUJIM on 7/10/24. | ||
// | ||
|
||
import UIKit | ||
|
||
import SnapKit | ||
|
||
class ParticipantCollectionViewCell: BaseCollectionViewCell { | ||
private lazy var profileImageView: UIImageView = UIImageView().then { | ||
$0.image = .imgProfile | ||
$0.contentMode = .scaleAspectFit | ||
} | ||
|
||
private let userNameLabel: UILabel = UILabel().then { | ||
$0.setText("userName", style: .caption02, color: .gray6) | ||
} | ||
|
||
override func setupView() { | ||
contentView.addSubviews(profileImageView, userNameLabel) | ||
} | ||
|
||
override func setupAutoLayout() { | ||
profileImageView.snp.makeConstraints { | ||
$0.height.equalTo(Screen.height(68)) | ||
$0.width.equalTo(profileImageView.snp.height) | ||
$0.top.centerX.equalToSuperview() | ||
} | ||
|
||
userNameLabel.snp.makeConstraints { | ||
$0.top.equalTo(profileImageView.snp.bottom).offset(6) | ||
$0.centerX.equalTo(profileImageView) | ||
$0.bottom.equalToSuperview() | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.