Issue
I have a standard ion-list of ion-items which is dynamically populated.
<ion-list>
<ion-item></ion-item>
<ion-item></ion-item>
<ion-item></ion-item>
</ion-list>
I would like to make it so that the standard border doesn't show up on the last ion-item in the list.
I've tried the following but it is just removing the border from every item.
ion-list ion-item:last-child{
--inner-border-width:0;
}
Solution
Hello I had misunderstood your question and I thought you wanted to remove the bottom line.
<ng-container *ngFor="let item of itemList; let last = last;">
<ion-item [lines]="last ? 'none' : 'full'">{{item.value}}</ion-item>
</ng-container>
Best regards and I hope this can help you
Answered By - Jonathan Duarte
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.