A new way to use custom fonts in your iOS, iPadOS, MacOS, WatchOS, TvOS applications.
- Easy to use
- Highly customizable
- Supports only SwiftUI
- Custom font modifiers for ease of use
We will continuously add more fonts to this package
- Inter
- Lato
- Poppins
- OpenSans
- Roboto
- Raleway
- Ubuntu
- Rubik
- Menlo
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler.
Add this Swift package in Xcode using its Github repository url. (File > Swift Packages > Add Package Dependency...)
Add this URL https://github.com/VishwaiOSDev/FontKit.git and select Add Package.
After adding it select FontKit and the font that you would like to add it to your application. You can use multiple fonts.
Note: FontKit should be selected
FontKit makes your life easier.
Firstly, import the FontKit and the selected font (FontInter, FontLato) on the root of SwiftUI App.
import FontKit
import FontInter
Register the fonts in the init.
import FontKit
import FontInter
@main
struct FontKit_TestApp: App {
init() {
FontKit.registerInter()
// You can register multiple fonts in here
// FontKit.registerLato()
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
With the help of modifiers we can consume the FontKit without headache.
Text("Hello, world!")
.font(.inter(.bold(size: 22)))
Note: Make sure FontKit is imported when you are using this modifier.
Font Name | Font Family | Register Function |
---|---|---|
Inter | .font(.inter) |
registerInter() |
Lato | .font(.lato) |
registerLato() |
OpenSans | .font(.openSans) |
registerOpenSans() |
Roboto | .font(.roboto) |
registerRoboto() |
Poppins | .font(.poppins) |
registerPoppins() |
Raleway | .font(.raleway) |
registerRaleway() |
Ubuntu | .font(.ubuntu) |
registerUbuntu() |
Rubik | .font(.rubik) |
registerRubik() |
Menlo | .font(.menlo) |
registerMenlo() |
black
bold
extraBold
extraLight
light
medium
regular
semibold
italic
thin
mediumItalic
boldItalic
heavy
You can use about fontType to the custom fonts.
Below are the usages of the FontKit
Text("Hello, Inter!")
.font(.inter(.bold(size: 22)))
Text("Hello, Lato!")
.font(.lato(.heavy(size: 18)))
Text("Hello, Poppins!")
.font(.poppins(.semibold(size: 20)))
Text("Hello, OpenSans!")
.font(.openSans(.regular(size: 13)))
Text("Hello, Roboto!")
.font(.roboto(.thin(size: 16)))
FontKit is released under the MIT license.
MIT License
Copyright (c) 2022 VishwaiOSDev
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
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.