I’ve attempted to use the pre-configured ionic component events, like ionSelect
but they are not triggering. Anyone know how to activate them. https://ionicframework.com/docs/api/radio#events
Here’s my code snippet:
<IonItem key={g.id}>
<IonLabel>{g.name}</IonLabel>
<IonRadio slot="start" value={g} checked={g === setGoal} ionSelect ={() => onTabSelect(g)} />
</IonItem>