Hello,
I’m using the latest ionic in vanilla JS and it works out fine, however I’ve this piece of code to generate a list of items:
return `<ion-item>
<ion-label>${name}</ion-label>
<ion-note color="medium">${value}</ion-note>
</ion-item>`;
It works fine in most cases, however sometimes the output note is very large resulting in this:
eIs there a way to make it behave like native iOS where if it doesn’t fit the note will be displayed on a new line? Here’s the example from iOS settings:
Thank you.
1 post - 1 participant