Skip to content

iCookbook/Resources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Assets layer of the project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published