Looking for a simple IONIC timer (countdown) code
@avishai_peretz_dev why do you feel the need to ask that? Everybody starts somewhere. Development isn’t an elite club.
View ArticleIonic Pro not using correct Google Play Services Version
On package build from the ionic pro dashboard? I was informed in an earlier email on another topic to include my platforms and plugins folders in my .gitignore. If that is indeed true how will those...
View ArticleGeofence - No Notifications
Hi all, I want to use the Geofence Plugin in my app. I used the way described in the official documentation https://ionicframework.com/docs/native/geofence/. I got everything to run, so...
View ArticleIonic Pro not using correct Google Play Services Version
What is the ionic-pro? Is that cloud building service? If so, you need to folk other plugins you use in your app, modify them.
View ArticleIonic geofence in once at location
Do you get notifications only when you Open the App?
View ArticlevirtualScroll scrollTo generates TypeError: Cannot read property 'scrollTop'...
Hi all, New to Ionic here, just love it. SuperSample is fantastic… but I’m a bit lost and don’t know where to turn to at this point. When using scrollTo on a virtualScroll content to jump far ahead in...
View ArticleSwipe-all doesn't work on phone
Hi, I’m using https://www.npmjs.com/package/ionic-swipe-all to react on my swipe-events. After the implementation, I ran it on Google chrome and it works, but when I run it on my phone (with android...
View ArticleLoad JS files before anything else (jQuery and other JS libraries)
I will reply to myself because I figured out a solution. The transpile process was giving errors because the $ and the functions html5_qrcode and html5_qecode_stop were not being read from the JS...
View ArticleCan't store image
Hey there, I’m trying to take a photo/select one from the library, store it and then upload it to a REST webserver. I’m not being able to store it. i believe the problem is related to where Im storing...
View ArticleImplement List Section Index Titles With Scroll Effects Like iOS UITableView
There is a nice implementation here https://codepen.io/mikelucid/pen/mqzLc I tried it but the main problem is that each letter is a button. When interacting with the browser, if you don’t release the...
View ArticleIonic 2 Form with ngModel
You call the editprofile() function without any parameter, so the value will be undefined, maybe try this (ngSubmit)="editprofile(form)", and then I would use value.fullname instead, plus a submit...
View ArticleRadio player with shoutcast ip
AppComponent.ts this.events.subscribe('play', () => { this.player.play('http://streaming.livecenter.com.br:9322/;stream.mp3').then(() => { console.log('Playing'); }); this.storage.set('button',...
View ArticleBest practice for my case - Should I use Ionic storage plugin or create a...
Use nosql as per earlier recommendation (ionic storage) to store meta data Use file plugin to store the files Unless u r working on a pwa
View ArticleIngore certficate errors
Hello, I emulate with ionic cordova emulate ios on my mac. But I got an error when making a http call because of self signed certficates. Is it possible to ignore these?
View ArticleCan't export apk when implemented free admob
hello ionic developers i had this issues when i image.png1366x768 166 KB mplemented admob i got this thanks for answer location: class AdMob...
View ArticleLoading Indicator In Background
Hello? I can confirm that a loading indicator is not displayed until the app/webpage is brought to the foreground. By appending .then(()=>console.log(…)) to the present/dismiss methods, you can see...
View ArticleReadable http body
I’d like to make the following code cleaner: this.http.post("http://..........", 'username=' + user + '&password=' + passw, options) I tried this code but it doesn’t work: let body =...
View ArticleWhat’s the difference between “cordova-plugin-ionic-keyboard” and...
bwhiting: ionic-native See the instructions on https://ionicframework.com/docs/native/keyboard/ $ ionic cordova plugin add ionic-plugin-keyboard $ npm install --save @ionic-native/keyboard
View ArticleReadable http body
Your code: let body = JSON.stringify({username: user, password: passw}); returns “{“username”:“a”,“password”:“b”}”
View Article