github mrousavy/nitro v0.14.0
Release 0.14.0

latest releases: v0.29.6, v0.29.5, v0.29.4...
10 months ago

0.14.0 (2024-10-30)

Fixes a few issues, and adds a new JS-only function getHybridObjectConstructor(...) which allows you to use new and instanceof with HybridObjects:

// uses NitroModules.createHybridObject<Image>('Image') under the hood
const HybridImage = getHybridObjectConstructor<Image>('Image')

const image1 = new HybridImage()
const image2 = new HybridImage()
const isImage = image1 instanceof HybridImage

✨ Features

🐛 Bug Fixes

📚 Documentation

  • Add docs for swift native view with Weak Ref (#243) (5dffa42)

Don't miss a new nitro release

NewReleases is sending notifications on new releases.