if use ion-label as float and ion-input placeholder both at the same time. i get the following few.
here’s the code:
<div *ngFor="let job of jobs; index as i">
<ion-item>
<ion-label floating>Job # {{i + 1}}</ion-label>
<ion-input type="text" placeholder="Write here" [(ngModel)]="job.answer"></ion-input>
</ion-item>
</div>
if i click inside the input, then label & placeholder seperates.
.
ion-label and ion-input’s placeholder shouldn’t need to merge together. Right ???