Popularity
1.4
Growing
Activity
0.0
Stable
44
3
8

Programming language: Swift
License: MIT License
Tags: Images    
Latest version: v3.3.5

SwiftWebImage alternatives and similar libraries

Based on the "Images" category.
Alternatively, view SwiftWebImage alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of SwiftWebImage or a related project?

Add another 'Images' Library

README

SwiftWebImage

Swift Version Carthage compatible License Platform

Progressive concurrent image downloader for SwiftUI, with neat API and performant LRU mem/disk cache.

Simple Usage

Just import SwiftWebImage and set url for SwiftImage:

SwiftImage<Image>(imageUrl)                   

Framework will automatically load Image with @ObservedObject data once download completes.

How to config ImageView?

Trailing config closure of SwiftImage is used for underlying ImageView configuration:

SwiftImage(imageUrl) { imageView in
  imageView
    .resizable()
    .aspectRatio(1, contentMode: .fit)
}

How to import library?

Simply add https://github.com/geekaurora/SwiftWebImage.git to your Swift Packages via project settings.

Demo


*Note that all licence references and agreements mentioned in the SwiftWebImage README section above are relevant to that project's source code only.