I've been trying to set a background image on my card using ngStyle
Take a look at my code below:
<ion-slides slidesPerView="1" centeredSlides (ionSlideWillChange)= "slideChange($event)" [ngStyle]= "{'background-image': 'url('+ bg +')'}">
Here's a snippet from my TS file:
bg = "images/sample.jpg"
I've also tried using this.bg and 'background' instead of 'background-image' but so far nothing has worked. Any suggestions would be appreciated. Thank you