Skip to content

0.14.0

Latest

Choose a tag to compare

@Kyle-Ye Kyle-Ye released this 18 Jan 20:03
· 13 commits to main since this release
eb66fb3

Highlights

  • Add Image render support
import Foundation
import OpenSwiftUI

struct ContentView: View {
    var body: some View {
        AsyncImage(url: URL(string: "...")) { image in
            image
                .resizable()
                .aspectRatio(contentMode: .fit)
        } placeholder: {
            Color.gray
        }
    }
}
image image

What's Changed

Full Changelog: 0.13.0...0.14.0