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

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -