First of all we need to download required Framework7 files.
First thing we should do for our App is to create index.html file with app’s skeleton. Choose the Basic Android/Material App Layout.
# In our custom my-app.js file var automation = new Framework7({ // Default title for modals modalTitle: 'Automation', // Hide and show indicator during ajax requests onAjaxStart: function (xhr) { myApp.showIndicator(); }, onAjaxComplete: function (xhr) { myApp.hideIndicator(); } }); |