How can I pass the itemId parameter to MarketPlaceItemPage for it to use that information?
async presentMarketplaceItem(itemId: number) {
const modal = await this.modalController.create({
component: MarketplaceItemPage,
cssClass: '',
mode: 'ios',
});
return await modal.present();
}
I've searched through the Ionic documentation but haven't found a solution yet. Appreciate any help in advance!