I have two radio buttons on a page, and I can’t see them correctly. Here is my code:
<div radio-group>
<div class="check-item" *ngFor="let answer of quiz.choices;let i=index">
<ion-radio (ionSelect)="setAnswer(i)"></ion-radio>
<ion-label>{{ answer.text }}</ion-label>
</div>
</div>
And here is how I see them: http://puu.sh/v92Dq/9b1e306b6d.png
This is responsive mobile version - desktop app.
Thanks