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
Post a Comment