I've been attempting to place an html input next to an ion checkbox, but I'm running into issues.
<label>
<ion-checkbox ng-model="mode" ng-checked="checked">
<input type="text">
</ion-checkbox>
</label>
Interestingly, it seems to work fine when text is included instead.
<label>
<ion-checkbox ng-model="mode" ng-checked="checked">
Label
</ion-checkbox>
</label>