Display GIFs in your SwiftUI project
A lightweight repository for putting GIF files into your project, available as a Swift Package.
Add this project on your Package.swift
import PackageDescription
let package = Package(
dependencies: [
.package(url: "https://github.com/tryboxx/GIFImage.git", .branch("main"))
]
)
import GIFImage
struct ContentView: View {
var body: some View {
GIFImage(gifName: "gif_file_name")
}
}
- 1.0.0
- Initial release with base
GIFImage
implementation
- Initial release with base
Christopher Lowiec – @chrislowiec
Distributed under the MIT license. See LICENSE
for more information.