/Resources

Assets layer of the project

Primary LanguageSwift

Resources

Resources layer of the application

Summary

Wrapper over the UIColor class.

It has fallbacks for lower versions of iOS for supporting dark theme in iOS 13.0 and above. For example:

/// The color for the main background of your interface.
public static let systemBackground: UIColor = {
    if #available(iOS 13.0, *) {
        return UIColor.systemBackground
    } else {
        return UIColor.white
    }
}()

Font manager that simplifies fonts' usage

Class-wrapper for all the images in the application

Wrapper for all the strings in the application

Dependencies

  • Logger to log data in debug mode

For more details, read GitHub Wiki documentation