Hi,
I want to style my fab button.
So, in my template I have
<ion-fab bottom right>
<button ion-fab background="getFabGradient()" >
<ion-icon name="add"></ion-icon>
</button>
[...]
</ion-fab>
this works when
getFabGradient() {
return "linear-gradient(darkorange, orange, green, darkblue, red)";
}
It does not work when
getFabGradient() {
return "conic-gradient(darkorange, orange, green, darkblue, red)";
}
Why does the first work and the second doesn’t??
How do I get my conic gradient?
regards

