Release 0.73.12
okwasniewski
released this
24 Jun 14:19
·
1090 commits
to main
since this release
What's Changed
Hey, This release is a backport of changes that landed in 0.74.x.
- feat: add support for ornaments & dev menu trigger by @okwasniewski in #149
- fix: [Hermes] Can't build a new project for dev #128
- fix: Asset validation failed - A key for 'MinimumOSVersion' is required #101
Ornaments support
It's now possible to define ornaments on windows by passing closure as the last parameter:
RCTWindow(id: "SecondWindow", sceneData: reactContext.getSceneData(id: "SecondWindow")) { rootView in
rootView.ornament(attachmentAnchor: .scene(.bottom)) {
VStack {
Button("Hey!") {}
}
.glassBackgroundEffect()
}
}
Full Changelog: https://github.com/callstack/react-native-visionos/commits/v0.74.3-visionos