Alexandru C Antonica

Results 8 comments of Alexandru C Antonica

@jonataslaw Do you have any idea how we can solve this issue? Or any other approach I can try to avoid the double firing of the `listen` callback ?

Any update here ? I tried the workaround with StackLayout but it doesn't work.

Thanks @mrkorsar The checkbox works but the main issue here is the event is not triggered. Event `checkedChange` doesn't work on iOS and as you can see in this [file](https://github.com/bradmartin/nativescript-checkbox/blob/master/checkbox.ios.ts),...

@manojdcoder I found a workaround. Instead of using `onCheckColor` or `onTintColor` I checked the color from `.ts` ``` @ViewChild("checkboxId") checkBox: ElementRef; ngAfterViewInit(){ if( platform.isIOS && this.checkBox ){ this.checkBox.nativeElement.onTintColor = "white";...

@manojdcoder Instead of `"white"` you can add your variable `tintColor`. It's the same thing. I had the some problem with property binding in my projects as well when I run...

I agree with @keerl. The `badge` could mean either `unread` or `unseen`. The default functionality is for `unseen` elements but if you want to implement an `unread` functionality, removing the...

@henrychavez I didn't test your idea but it seems to make sense and I gonna try it this week if I can find some free time. I will also create...