What is the difference between apache cordova and ionic?

后端 未结 5 1561
太阳男子
太阳男子 2020-12-15 03:13

I want to develop a hybrid mobile application and I want to know what is the difference between Cordova and ionic?

5条回答
  •  借酒劲吻你
    2020-12-15 03:59

    • Ionic vs Cordova: First of all I would recommend starting with Ionic because its better to have with some UI widgets to start with rather than a blank screen (Cordova) and to start from scratch.
    • Hybrid Apps: These are not Native apps but rather use WebViews (browser built-in your app) to display your views (coded in HTML) and fetch user input and then use JavaScript (or Angular etc) to process them. Although they are not native but they have access to some of the Native APIs i.e. to take picture using camera, record video/audio etc.
    • Suggestion: If you want to develop native apps using a single code base use React Native, which uses HTML, JSX (JavaScript + XML) and CSS.

提交回复
热议问题