I'm trying to remove this white space from my project.
Iwouldlikeittolooklikethis:
<ion-contentno-padding><div[ngSwitch]="Menu" >
<ion-list *ngSwitchCase="'Todosgastronomia'" >
<ion-item *ngFor="let produto of produtos" no-padding>
<ion-thumbnail item-start no-padding>
<img src="assets/imgs/mmsszjm.png" class="imgproduto">
</ion-thumbnail>
<h3 class="nomproduto"> {{produto.nom_produto}} </h3>
<h3 class="nomsubcategoria">{{produto.nom_subcategoria}} </h3>
<h3 class="descproduto"> {{produto.desc_produto}} </h3>
<h3 class="valproduto">
<font color="#179c90">R$</font> {{produto.val_produto}}
</h3>
<button ion-button class="queroproduto">QUERO!</button>
</ion-item>
</ion-list>
I can almost make it a bit the same, however when I add a button, even though it is on the right side > > "Button I WANT!" it occupies a blank space on the other side. If anyone can help, Thanks!