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
To help improve clarity and make the codebase cleaner, all fonts defined in various classes should go to the Stylesheet.swift file.
Stylesheet.swift
Example:
titleLabel.font = UIFont(name: "Roboto-Bold", size: UIView.getValueScaledByScreenWidthFor(baseValue: 17))
should be defined in the Stylesheet as follows:
enum FontStyles { static let headerTitle = UIFont(name: "Roboto-Bold", size: UIView.getValueScaledByScreenWidthFor(baseValue: 17)) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To help improve clarity and make the codebase cleaner, all fonts defined in various classes should go to the
Stylesheet.swift
file.Example:
should be defined in the Stylesheet as follows:
The text was updated successfully, but these errors were encountered: