I’m adding ion-radio elements to a list, but I can’t figure out how I can get them to show correctly like in the demo codepens. I’m using beta 5.
All other input elements like the date you can see is showing up just fine, but the radio’s aren’t. Am I using them wrong?
<ion-radio ng-model="formData.gender" ng-value="male">Man</ion-radio>
<ion-radio ng-model="formData.gender" ng-value="female">Vrouw</ion-radio>
update: so stupid, there was a syntax error in my controller somewhere, causing the rest of the app to render incorrectly of course. My bad.