Skip to content

Commit

Permalink
[#27] List, SnackBar didSet 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeJoEun-01 committed Jan 4, 2025
1 parent fd0d88d commit a44d6d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions Handy/Handy/Source/Atom/HandySnackbar.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ final public class HandySnackbar: UIView {
/**
스낵바에 들어갈 글을 설정할 때 사용합니다.
*/
@Invalidating(wrappedValue: "", .layout) public var text: String {
didSet {
label.text = text
}
}
@Invalidating(wrappedValue: "", .layout) public var text: String

/**
스낵바의 외관 타입을 결정할 때 사용합니다.
Expand Down
6 changes: 1 addition & 5 deletions Handy/Handy/Source/Atom/List/HandyListItem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ final public class HandyListItem: UIView {
/**
Title의 text를 설정할 때 사용합니다.
*/
@Invalidating(wrappedValue: "", .layout) public var title: String {
didSet {
titleLabel.text = title
}
}
@Invalidating(wrappedValue: "", .layout) public var title: String

/**
Leading icon 설정할 때 사용합니다.
Expand Down

0 comments on commit a44d6d2

Please sign in to comment.