-1
Good guys, I’m starting with the Ionic and while trying to reproduce some screens I came across an arrow, that’s right, an arrow, follow the image:
What I got so far:
And code:
<ion-content>
<div id="container">
<ion-item lines="full" class="ion-no-padding">
<ion-input placeholder="MY NAME IS"></ion-input>
</ion-item>
<ion-item mode="ios" lines="none" class="ion-no-padding" id="x">
<ion-input id="item-custom" placeholder="GET ACCESS" [type]="showPassword ? 'text' : 'password'"></ion-input>
</ion-item>
</div>
</ion-content>
The question is how to reproduce this arrow, what would be the best solution ? I thought about using the ion-icon but I can only increase it as a whole using
font-size: ;
and not a single dimension, correct ?
That’s exactly what it was, beast !
– Afonso de Oliveira
@Afonsodeoliveira cool that worked there! I’m glad to have helped
– hugocsl