--
-- You received this message because you are subscribed to the Google
Groups "phonegap" group.
To post to this group, send email to phon...@googlegroups.com
To unsubscribe from this group, send email to
phonegap+u...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/phonegap?hl=en?hl=en
For more info on PhoneGap or to download the code go to www.phonegap.com
---
You received this message because you are subscribed to the Google Groups "phonegap" group.
To unsubscribe from this group and stop receiving emails from it, send an email to phonegap+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
The obvious follow-up question is, why not just use Ionic? I do; it's awesome.
Rémi Couturier wrote:
I'd like to find something as close as possible to the OS respective's default spinner (Android & iOS).--
Something like the ones provided by ionic would be great (see the android and ios examples in the following link): http://ionicframework.com/docs/api/directive/ionSpinner/
On Thursday, May 14, 2015 at 10:08:56 PM UTC+2, Kerri Shotts wrote:It might help if we knew what kind of appearance you were aiming for.
On Thursday, May 14, 2015 at 5:24:10 AM UTC-5, Rémi Couturier wrote:Hi, is there a way to trigger a native "spinner" in Cordova ?I'm referring to the ProgressBar class ("The indeterminate progress bar can be either a spinning wheel or a horizontal bar.") In Android.
And to the UIActivityIndicatorView class in iOS.I've found and tested severals plugins which seem to do that, but visually their "spinner" / "spinning wheel" doesn't look the same as the one you get natively in Android Lollipop or iOS 8:
- https://github.com/Paldom/SpinnerDialog
- https://github.com/Initsogar/cordova-activityindicator
- https://github.com/sidneys/cordova-plugin-progressview (visually the closest to what I'm trying to achieve, but don't seems to work in Cordova 5.0.0)
-- You received this message because you are subscribed to the Google
Groups "phonegap" group.
To post to this group, send email to phon...@googlegroups.com
To unsubscribe from this group, send email to
For more options, visit this group at
http://groups.google.com/group/phonegap?hl=en?hl=en
For more info on PhoneGap or to download the code go to www.phonegap.com
---
You received this message because you are subscribed to the Google Groups "phonegap" group.
To unsubscribe from this group and stop receiving emails from it, send an email to phonegap+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Of course there's no reason that you have to throw something like that up using native code
And how are the other plugins you mentioned missing the mark in your eyes? Visuals would help, obviously.
Of course there's no reason that you have to throw something like that up using native code -- Use Ionic's versions or any of the other numerous spinner implementations on the web. You can detect the device platform easily enough to decide which one you want to show.
On Thursday, May 14, 2015 at 4:19:23 PM UTC-5, Steve Sobol wrote:
The obvious follow-up question is, why not just use Ionic? I do; it's awesome.
Rémi Couturier wrote:
I'd like to find something as close as possible to the OS respective's default spinner (Android & iOS).--
Something like the ones provided by ionic would be great (see the android and ios examples in the following link): http://ionicframework.com/docs/api/directive/ionSpinner/
On Thursday, May 14, 2015 at 10:08:56 PM UTC+2, Kerri Shotts wrote:It might help if we knew what kind of appearance you were aiming for.
On Thursday, May 14, 2015 at 5:24:10 AM UTC-5, Rémi Couturier wrote:Hi, is there a way to trigger a native "spinner" in Cordova ?I'm referring to the ProgressBar class ("The indeterminate progress bar can be either a spinning wheel or a horizontal bar.") In Android.
And to the UIActivityIndicatorView class in iOS.I've found and tested severals plugins which seem to do that, but visually their "spinner" / "spinning wheel" doesn't look the same as the one you get natively in Android Lollipop or iOS 8:
- https://github.com/Paldom/SpinnerDialog
- https://github.com/Initsogar/cordova-activityindicator
- https://github.com/sidneys/cordova-plugin-progressview (visually the closest to what I'm trying to achieve, but don't seems to work in Cordova 5.0.0)
-- You received this message because you are subscribed to the Google
Groups "phonegap" group.
To post to this group, send email to phon...@googlegroups.com
To unsubscribe from this group, send email to
For more options, visit this group at
http://groups.google.com/group/phonegap?hl=en?hl=en
For more info on PhoneGap or to download the code go to www.phonegap.com
---
You received this message because you are subscribed to the Google Groups "phonegap" group.
To unsubscribe from this group and stop receiving emails from it, send an email to phonegap+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Because that first plugin you list is pretty much as native as can get (since it uses the native ProgressDialog / UIActivityIndicatorView classes).
Also, based on the other screenshot, I'm assuming you've got a bare-bones project -- care to share?
window.plugins.spinnerDialog.show();
alert('hello!');Timing in this case is fixed, I think you may want to control the behaviour.
The source code for my test is pretty basic. It's a bare-bone cordova app, with the https://github.com/Paldom/SpinnerDialog plugin.
The only code I've added are those two lines of JavaScript in /www/js/index.js (in the existing receivedEvent method):window.plugins.spinnerDialog.show();
alert('hello!');Also, what do you mean by:Timing in this case is fixed, I think you may want to control the behaviour.Are you talking about your growls' module? What does this have to do with the spinner?Thanks!