I recently started working with the ionic framework and I am currently struggling with a scrolling issue in my page design. Below is the code from my index.html file:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<link rel="manifest" href="manifest.json">
<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="lib/ionic/js/ionic.bundle.js"></script>
<script src="cordova.js"></script>
<script src="js/app.js"></script>
</head>
<body ng-app="starter">
<!-- Code omitted for brevity -->
</body>
</html>
Currently, I am facing two main issues with the UI: 1) There is a gap in the layout, as indicated in the image here: https://i.sstatic.net/hHmRL.png
2) Some content is getting hidden behind the footer, as shown in this image: https://i.sstatic.net/rG12t.png
I am unsure of what mistake I may have made in utilizing ion-content and ion-view. Any assistance would be greatly appreciated.