You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Beautiful flag icons for usage in apps and on the web. All flags are provided as stand-alone PNG and SVG files. FlagKit also provides an Asset Catalog and framework for easy use on Apple platforms.
Installation (iOS, macOS, tvOS)
FlagKit provides a framework for easy installation as a dependency. You can also manually copy the Asset Catalog into your project.
SwiftPM
Add the folowinig as repository URL:
https://github.com/madebybowtie/FlagKit.git
Carthage
Add the following line to your Cartfile:
github "madebybowtie/FlagKit"
CocoaPods
Add the following line to your Podfile:
pod 'FlagKit'
Manual
Add Assets/FlagKit.xcassets to your target.
Usage (iOS, macOS, tvOS)
FlagKit provides both rectangular unstyled flags and styled flags in a variety of shapes. Our sample project demonstrates how to display flags and customize them into different shapes (rounded corners, square, circle).
Note: Styling is currently not supported by FlagKit on macOS
This brief example loads the flag for the users current locale, and retrieves the unstyled flag and a styled flag:
letcountryCode=Locale.current.regionCode!
letflag=Flag(countryCode: countryCode)!
// Retrieve the unstyled image for customized use
letoriginalImage= flag.originalImage
// Or retrieve a styled flag
letstyledImage= flag.image(style:.circle)
You can always access the underlying assets directly, through the bundled Asset Catalog: