1- I have a modal with a checkbox. How do I use elements from an array on another page?
For example: Array from tab2.page.ts.
2- In addition, I use an ion-label to name my ion-checkbox, but the information in my ion-checkbox (an address) is cut off.
My modal with checkbox:
<ion-content>
<br>
<ion-label color="secondary"><strong>Address</strong></ion-label>
<ion-item>
<ion-checkbox color="secondary"></ion-checkbox> <ion-label>Times Square Store, Levittown, NY</ion-label>
</ion-item>
<br>
<ion-label color="secondary" ><strong>Options</strong></ion-label>
<ion-item>
<ion-checkbox color="secondary"></ion-checkbox> <ion-label>Element [0] Array from tab2.page.ts.</ion-label>
</ion-item>
<ion-item>
<ion-checkbox color="secondary"></ion-checkbox><ion-label>Element [1] Array from tab2.page.ts.</ion-label>
</ion-item>
</ion-content>
Can someone help me??