Am creating a ecommerce app and in the cart page i need to add the ability to increase quantity of each product. Please find below the code that i wrote
<ion-row>
<ion-col>
Jeans
</ion-col>
<ion-col>
<ion-icon name="remove-circle" (click)="decrement()"></ion-icon>
{{currentNumber}}
<ion-icon name="add-circle" (click)="increment()"></ion-icon>
</ion-col>
</ion-row>
<ion-row>
<ion-col>
Shirts
</ion-col>
<ion-col>
<ion-icon name="remove-circle" (click)="decrement()"></ion-icon>
{{currentNumber}}
<ion-icon name="add-circle" (click)="increment()"></ion-icon>
</ion-col>
</ion-row>
This increases quantity for all, i need the ability to change for individual products. Many more rows will be added to cart. And should be able to display total cost of each item with reference to the quantity. So someone help