/gp-swift-font-awesome

Font Awesome 5 and 6 in SwiftUI Apps

Primary LanguageSwiftOtherNOASSERTION

License

Copyright (c) 2019-2021, Matt Maddux. MIT License

Copyright (c) 2022-2023, Greg PFISTER. MIT License

Font Awesome 5 and 6 in SwiftUI Apps

This project is a fork of FASwiftUI by Matt Maddux. But it is intended to go its own way.

Easily integrate Font Awesome into your SwiftUI projects. Use Font Awesome icons as text in your SwiftUI views.

It supports Font Awesome 5 (Pro or Free) and Font Awesome 6 (Pro or Free).

(Does not currently support the Duotone style.)

Installation - Swift Package Manager


  1. Add the Swift package to your Xcode project
    1. File -> Swift Packages -> Add Package Dependency
    2. Enter https://github.com/gpfister/gp-swift-font-awesome.git
  2. Download Font Awesome 5 or 6
    1. Go to https://fontawesome.com/download
    2. Download the Pro or Free version
  3. Drag the following files from the download to your project:
    • For Font Awesome 5:
      • icons.json
      • Font Awesome 5 Brands-Regular-400.otf
      • Font Awesome 5 [Free/Pro]-Regular-400.otf
      • Font Awesome 5 [Free/Pro]-Solid-900.otf
      • Font Awesome 5 Pro-Light-300.otf (Pro Only)
    • For Font Awesome 6:
      • icons.json
      • Font Awesome 6 Brands-Regular-400.otf
      • Font Awesome 6 [Free/Pro]-Regular-400.otf
      • Font Awesome 6 [Free/Pro]-Solid-900.otf
      • Font Awesome 6 Pro-Light-300.otf (Pro Only)
  4. Add files to target - For each of the files in the last step:
    1. Select the file in Project Navigator
    2. Open the Inspectors bar on the right and select the file inspector (first tab)
    3. Under Target Membership select each target you need to use GPFontAwesome
  5. Add Fonts to Info.plist
    1. Open your project's info.plist
    2. Right-Click in a blank area and choose "Add Row"
    3. Name the new entry "Fonts provided by application"
    4. Expand the entry by clicking the triangle to the left
    5. Add a new entry for each of the "otf" files you added to your project, using the full filename including the extension
  6. You're done!

Usage


Use a Font Awesome icon in any view (replace GPFontAwesome5 by GPFontAwesome6 to use Font Awesome 6):

import SwiftUI
import GPFontAwesome5

struct ContentView: View {
    var body: some View {
        GPFAText(iconName: "bomb", size: 200)
    }
}

Regualr Icon Screenshot

You can also choose an alternate style. (This is ignored if the icon is a brand and currently duotone is not supported and will default back to regular.)

import SwiftUI
import GPFontAwesome5

struct ContentView: View {
    var body: some View {
        GPFAText(iconName: "bomb", size: 200, style: .solid)
    }
}

Regualr Icon Screenshot

Set the color as you would any text.

import SwiftUI
import GPFontAwesome5

struct ContentView: View {
    var body: some View {
        GPFAText(iconName: "bomb", size: 200)
            .foregroundColor(Color.red)
    }
}

Regualr Icon Screenshot

Contributions


Contributions are welcome, please refer to these contributions guidelines.

License


Provided under the MIT License.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.