Git Product home page Git Product logo

asyncimage's Introduction

AsyncImage

iOS >= 13 AsyncImage with the following characteristics:

  • Loads the image when te view appears in the screen
  • Cancel download request when it disappears
  • (optional) in-memory cache to avoid too many URLRequest
  • Thread safe
  • Concurrency handling to avoid duplicate URLRequest
  • Automatically reload when connectivity is regained
  • Automatic retry when URLRequest fails

Getting started

You can clone this repository and run the AsyncImageDemo App.

AsyncImage("https://picsum.photos/200/300".urlRequest)
    .frame(width: 200, height: 200)

You can optionally use the configuration to apply modifiers to the Image rather than directly to the View returned by AsyncImage. If not specified, default ones applied are: resizable().renderingMode(.original)

Controlling the cache

Warning: Make sure to create an ImageCache and PublisherCache object somewhere in your app/module and injected to the AsyncImage object. Do not create a new one per each image, otherwise it will not work as intended.

let imageCache = PublisherCacheFactory.makeTemporaryCache()
let publisherCache = ImageCacheFactory.makeTemporaryCache()

AsyncImage(
    request: "https://picsum.photos/200/300".urlRequest,
    imageCache: imageCache,
    publisherCache: publisherCache
)
.frame(width: 200, height: 200)

Install

Swift Package Manager

In Xcode, right click your project and Add Packages, then enter the repository URL.

https://github.com/MarcBiosca/AsyncImage

If you are working with a package, add the repository URL in your Package.swift:

.package(url: "https://github.com/MarcBiosca/AsyncImage.git", from: "1.0.0")

CocoaPods

Add the following line in your Podfile:

pod 'SimpleAsyncImage'

asyncimage's People

Contributors

marcbiosca avatar

Stargazers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.