We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@derrickkim0109 @noeyiz
아래와 같이 Label에 text값을 일단 현재는 원시값으로 지정하였지만 추후 지역화 및 문구 관리 측면에서 볼 때는 바람직하지 않습니다.
따라서 tuist에서 제공하는 resourceSynthesizer 를 활용하여 아래와 같은 원시값을 관리할 필요성이 있어보입니다.
private var agreementTitleLabel: UILabel = { let label = UILabel() label.numberOfLines = 0 label.text = "Feelin 이용을 위해 약관을\n동의해주세요" label.font = SharedDesignSystemFontFamily.Pretendard.bold.font(size: 24) label.textColor = Colors.gray08 return label }()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@derrickkim0109 @noeyiz
아래와 같이 Label에 text값을 일단 현재는 원시값으로 지정하였지만 추후 지역화 및 문구 관리 측면에서 볼 때는 바람직하지 않습니다.
따라서 tuist에서 제공하는 resourceSynthesizer 를 활용하여 아래와 같은 원시값을 관리할 필요성이 있어보입니다.
The text was updated successfully, but these errors were encountered: