Nativescript Switch not to fire initial binding
问题 My view is <Switch checked="{{ active }}" propertyChange="onCheckChange"/> exports.onCheckChange = function(args) { //Api Service call } Actually I am binding the active value by API call and the issue is that onCheckChange gets executed during the initial binding with false value, so whenever I initially set the active==true by api service call and load the page, the onCheckChange is executed with checked==false , can anyone give me an idea about this please. Note: Beginner in Nativescript