ggoraa / SFSymbols

Easy usage SFSymbols. If symbol not available, compiler will show warning.

Home Page:https://opensource.ivanvorobei.by

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SFSymbols

Wrapper of SFSymbols. You choose the icon and what style to draw it in. You can specify the font with which to draw the icon. If the symbol is not available for your version of iOS/macOS/tvOS, the compiler will show a warning. Processed all symbols by script.

Installation

Ready for use on iOS 13+.

Swift Package Manager

The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.

Once you have your Swift package set up, adding as a dependency is as easy as adding it to the dependencies value of your Package.swift.

dependencies: [
    .package(url: "https://github.com/ivanvorobei/SFSymbols", .upToNextMajor(from: "1.0.1"))
]

Manually

If you prefer not to use any of dependency managers, you can integrate manually. Put Sources/SFSymbols folder in your Xcode project. Make sure to enable Copy items if needed and Create groups.

Usage

SwiftUI

To create an image:

Image(.trash.circle)

With a font:

Image(.plus)
    .font(.body)

UIKit

To create an image:

let image = UIImage(.trash.circle)

If need with specific font, use this:

let image = UIImage(.plus, font: UIFont.preferredFont(forTextStyle: .body))

AppKit

To create an image:

let image = NSImage(.trash.circle)

If need with specific font, use this:

let image = NSImage(.plus, font: UIFont.preferredFont(forTextStyle: .body))

Russian Community

Я веду телеграм-канал, там публикую новости и туториалы.
С проблемой помогут в чате.

Видео-туториалы выклыдываю на YouTube:

Tutorials on YouTube

About

Easy usage SFSymbols. If symbol not available, compiler will show warning.

https://opensource.ivanvorobei.by

License:MIT License


Languages

Language:Swift 100.0%