https://docs.nativescript.org/api-reference/classes/_ui_core_view_.view#setinlinestyle
Is there any example of this function?
let image = new Image();
image.height = 300dp;
image.setInlineStyle('background-image: url(~/images/my_img.png)')
OR
image.setInlineStyle('{ background-image: url(~/images/my_img.png) }')
Both are not working.
Have I misunderstood the usage of setInlineStyle? Any idea? Thank you.