Comment on With React Native it’s not all sugar and spiceparentComments−skrebbel10yHow do you build the ui? Just push pixels? Or vertices? Some library maybe?−pjmlp10ySince I care mostly about game related stuff, Cocos2D-x, SDL, openFrameworks.When doing more app like coding, following MVVM patterns with the view written in the platform language.On iOS you can use Objective-C++, on WP and UWP C++/CX.Android is the worst because Google keeps the NDK at an arm's length, but projects like Djinni and SafeJNI help.If you don't bother to provide a native experience, but still enjoy the portability of C++'s code, there is always Qt and QML.
Comments
How do you build the ui? Just push pixels? Or vertices? Some library maybe?
Since I care mostly about game related stuff, Cocos2D-x, SDL, openFrameworks.
When doing more app like coding, following MVVM patterns with the view written in the platform language.
On iOS you can use Objective-C++, on WP and UWP C++/CX.
Android is the worst because Google keeps the NDK at an arm's length, but projects like Djinni and SafeJNI help.
If you don't bother to provide a native experience, but still enjoy the portability of C++'s code, there is always Qt and QML.