Hi, i’ve created a simple login view with the scrolling disable (using scroll=‘false’) but with class has-header and has-footer.
This is the code:
<ion-view>
<ion-content padding="true" class="has-header has-footer" scroll="false">
<form ng-controller="loginController" name="loginForm" ng-submit="loginForm.$valid && btnLogin()" novalidate>
<ion-list>
<label class="item item-input">
<span class="input-label">Username</span>
<input ng-model="input.user" name="user" type="text" placeholder="" required>
</label>
<label class="item item-input">
<span class="input-label">Password</span>
<input ng-model="input.pwd" type="password" placeholder="" required>
</label>
</ion-list>
<div class="spacer" style="height: 40px;"></div>
<input class="button button-positive button-block" type="submit" value="Log In">
</form>
</ion-content>
</ion-view>
But when i start the app on device, the whole view, including header and footer, scroll by a few pixel.
Can anyone help me please?
Thanks