How I can remove
divider? I have the following code to show 4 items in a row:
use (lines="none") in your ion-item
If you want to disable the lines / borders globally on all of your <ion-item>
's, just add the following code to your src/global.scss
(default when generating a Ionic v4 App with Angular) of your application.
ion-item {
--border-width: 0;
--inner-border-width: 0;
}
The attribute lines="none"
on a <ion-item>
does nothing other.
Hope it helps someone.
Cheers Unkn0wn0x