var React = require('react-native'); var { TabBarIOS, NavigatorIOS } = React; var App = React.createClass({ render: function() { return ( <TabBarIOS> <TabBarIOS.Item title="React Native" selected={true}> <NavigatorIOS initialRoute={{ title: 'React Native' }} /> </TabBarIOS.Item> </TabBarIOS> ); }, });
看着這奇怪的寫法,頓時無愛了。javascript
總體思路和NativeScript基本一致,封裝javascript引擎,提供組件api.java
相比這下,仍是感受NativeScript作得更「專業」一些。react