Extends Headless Drupal 8 and builds a sample ToDo App in Ionic2
Installing Ionic
Refer this URL - http://ionicframework.com/docs/v2/getting-started/installation/
Things to note
Running app on iOS
$ ionic platform add ios
After adding iOS platform and to make HTTP requests oniOS9 using Ionic2, following lines needs to be added in the .plist file.
Look for platforms/ios/{project_name}/{project_name}-Info.plist file and edit it -
Add the following lines in the main <dict> element
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>