In-app purchase of Apple Store in Ionic
I have a tutorial for implementing iOS In App Purchases in Phaser (a HTML5 game framework): http://www.joshmorony.com/how-to-create-ios-in-app-purchases-with-phonegap-build/ Obviously not Ionic, but...
View ArticleIonic starter sidemenu problems
I started a new project, the ionic sidemenu template and the firsts page that is created has this div: <div class="title title-center header-item" style="left: 48px; right: 48px;"></div>...
View ArticleHas-bouncing="false" does not prevent bouncing on iOS
The has-bouncing="false" attribute is not working for me on iOS, whether I put it on ion-content or ion-scroll, or anything. My structure is like (in Jade style): ion-view(title='Profile')...
View ArticleDeclare controller in app.js
Hi everyone, I am having a problem with declaring controller in my app.js (I am new to both ionic and angularJS) This is the additional code I have in app.js var myApp = angular.module('starter',...
View ArticleDeclare controller in app.js
mankinchi: myApp.controller ("venueCtrl", funciton($scope) {}); I think there is a mistake in the word function try this:myApp.controller ("venueCtrl", function($scope) {});
View ArticleForm input fields initialization with values
I think it was a Problem with saving the data. I didn't save it as a boolean, but as tinyint. I've solved it.
View ArticleCannot find module 'config-chain'
What a pain in the a$$ but it worked! Finally! THANK YOU!
View ArticleIonic 2 location services
Good Day Sir/Ma'am, How can I add the plugin for location services? $ ionic plugin add ?????? And how can we use it in ionic 2 to enable location services for android/ios? (sample code if possible)...
View ArticleBlank application on Android
Great! I'll try it and let you know. UPDATE:Tested when add Crosswalk, it works now! Thanks you very much, Richard!
View ArticleHow to pass data from $ionicModal to main controller?
In my case.. I could update the data from cannot be bind on the main view... is there something wrong with my code ?Main Controller $ionicModal.fromTemplateUrl('post-modal.html', { scope: $scope,...
View ArticleNewbie, simple sidemenu and content
Hi, I am trying to start a very simple app from scratch and I can't get my head around a view / controller issue. My app is not showing the about.html (defined as the default route) and it does not do...
View ArticleNewbie, simple sidemenu and content
app.jsvar playApp = angular.module('playApp', ['ionic']).run(function($ionicPlatform) { $ionicPlatform.ready(function() { // Hide the accessory bar by default (remove this to show the accessory bar...
View ArticleError while building ionic project
While building ionic project get following error: module.js:339 throw err; ^ Error: Cannot find module 'bplist-parser' at Function.Module._resolveFilename (module.js:337:15) at Function.Module._load...
View ArticleIonic 2 location services
You need to add geolocation plugins into your project . like this https://github.com/apache/cordova-plugin-geolocation
View ArticleSplash Screen on Android
You can explore this article may be helpful https://blog.nraboy.com/2014/08/add-splash-screen-ionicframework-project/
View ArticleNewbie, simple sidemenu and content
Can you add you project into http://codepen.io/ for review
View ArticleNewbie, simple sidemenu and content
I found some great material on codepen : http://codepen.io/emilyemorehouse/pen/bdmGRj That is exactly what I am trying to do. I will follow the steps.
View ArticleDeclare controller in app.js
If you face any problem ,Your first action should be check console. If you using chrome use right click anywhere on page and select "Inspect Element" and gointo console . It will show you error . For...
View ArticleError while building ionic project
Error Solve: Install module bplist-parser:sudo npm install -g minimatch bplist-parser
View ArticleCan't lock screen orientation?
Yes..all you need to do is just remove that preference tag from config.xml
View Article