Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
_updatePosition () {
setNativeProps(this.circle, this._circleStyles)
}
_highlight () {
setNativeProps(this.circle, {
style: {
backgroundColor: CIRCLE_HIGHLIGHT_COLOR
}
});
}
_unHighlight () {
setNativeProps(this.circle, {
style: {
backgroundColor: CIRCLE_COLOR
}
});
}