npm react-native-nitro-modules 0.14.0
Release 0.14.0

latest releases: 0.37.1, 0.37.0, 0.37.0-beta.1...
22 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 react-native-nitro-modules release

NewReleases is sending notifications on new releases.