Hacker News new | ask | show | jobs
by saghul 1033 days ago
Thanks for posting this here, kind stranger!

Fun fact about the Flutter SDK: it's a wrapper over our native SDKs, which themselves wrap our React Native codebase :-)

Right now we have a shared codebase between web and react-native, and from there are able to provide all our mobile SDKs:

- Native Android SDK (Java wrapper for RN) - Native iOS SDK (ObjC wrapper for RN) - React Native SDK (JS component of the RN parts) - Flutter SDK (Kotlin / Swift wrapper of the Java / ObjC SDKs)

It has been quite fun to work on these!