You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,25 @@ npm install react-native-nitro
15
15
16
16
🤔
17
17
18
+
## Platforms
19
+
20
+
### Cross-platform
21
+
22
+
Cross-platform native modules can be built with C++.
23
+
Any custom C++ types can be used and bridged to JS with minimal overhead.
24
+
25
+
JS <-> C++ type converters are statically generated ahead of time - no more dynamic lookups or runtime parser errors! 🥳
26
+
27
+
### iOS
28
+
29
+
iOS native modules and view components can be written either in pure C++, or pure Swift.
30
+
Thanks to Swift 5.9, Swift Nitro Modules [bridge directly to C++](https://www.swift.org/documentation/cxx-interop/) instead of going through Objective-C message sends. Woohoo, no more Objective-C! 🥳
31
+
32
+
### Android
33
+
34
+
Android native modules and view components can be written either in pure C++, or pure Kotlin/Java.
35
+
Thanks to fbjni, even complex types can be effortlessly bridged to Kotlin/Java with minimal overhead! 🔥
36
+
18
37
## Contributing
19
38
20
39
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
0 commit comments