Skip to content

Commit

Permalink
✏️ :: [#72] SplashFeature / DotoriIconView size가 CGFloat를 받는줄 알았는데 CG…
Browse files Browse the repository at this point in the history
…Size였습니다
  • Loading branch information
baekteun committed Jul 23, 2023
1 parent ba92a64 commit c730d76
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ import MSGLayout
import UIKit

final class SplashViewController: BaseViewController<SplashStore> {
private let dotoriLogoImageView = DotoriIconView(size: .custom(108), image: .Dotori.dotori)
private let dotoriLogoImageView = DotoriIconView(
size: .custom(.init(width: 108,height: 108)),
image: .Dotori.dotori
)

override func addView() {
view.addSubviews {
Expand Down

0 comments on commit c730d76

Please sign in to comment.