Hello everybody, first sorry for my english, i’m french
I discovers Ionic and i like more and more !!!
I use Ionic for my training and i would like to know if it’s possible to create a “space” between two item in a ?
Thank for your réponse
Hello everybody, first sorry for my english, i’m french
I discovers Ionic and i like more and more !!!
I use Ionic for my training and i would like to know if it’s possible to create a “space” between two item in a ?
Thank for your réponse
Greetings! Glade you’re liking Ionic.
By space, do you mean margin? If so, you can just adjust the margin value for the items like this
.item{
margin:10px auto;
}
Great !
Thank a lot for your help
Thank you so much I Was looking this king of manipulation of ion-item
How to remove space between list-items, in dynamic generated list as following:
<ion-list *ngFor="let as of [{name: 'AAA'},{name: 'BBB'}]">
<ion-item>
{{as.name}}
</ion-item>
</ion-list>