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

symfony - InvalidConfigurationException in SecurityExtension.php line 429: No authentication listener registered for firewall "secured_area" -

angular ui router - 10 digest iterations reached in angularjs when using $state.go -

javascript - Can Piwik report referrer in real time? -