Within my Ionic application, I have a very simple HTML structure:
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Ionic Blank Starter</h1>
</ion-header-bar>
<ion-content>
<ion-nav-view></ion-nav-view>
</ion-content>
</ion-pane>
The issue arises with the ion-content
directive enclosing the content of ion-nav-view
in the following HTML snippet:
<div class="scroll" style="-webkit-transform: translate3d(0px, 0px, 0px) scale(1);"></div>
If I remove the translate3d
attribute, the content displays properly. However, I believe there must be a more optimal solution or perhaps something I am overlooking.
The content within my template is straightforward:
<div>
<p>Welcome to the main screen</p>
</div>
I have provided a plunk that demonstrates the issue I am facing: