ionic transition issue iOS -


i have form angular validation, using $dirty when accessing page, validation appear sec. bad transition, on ios, android working fine.

i tried search anywhere , cant find solution, can help? thank you.

example code :

<div class="error-container text-left" ng-show="form.firstname.$invalid && form.firstname.$dirty">     <p ng-show="form.firstname.$error.required">first name can not empty</p> </div> 

but @ first time load page, still appear @ first load couple sec.

you can add ng-hide in div class.

    <div class="error-container text-left ng-hide" ng-show="form.firstname.$invalid && form.firstname.$dirty">         <p ng-show="form.firstname.$error.required">first name can not empty</p>     </div> 

Comments

Popular posts from this blog

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

html - Why is a table with width of 75% wider than three tables which total 99%? -