Adding ion-content in ion-view

Is it a good practice to add ion-content in ion-view? The reason I would do this is because ion-view does not provide me the scrolling mechanisms for smooth interaction.

<ion-view><ion-content>
<div class="oneTimeSplash">splash text</div>
<div style="height: 100%; width: 100%; overflow-y: scroll; -webkit-overflow-scrolling: touch;">
<ion-list can-swipe="true"></ion-list>
</div>
</ion-content></ion-view>

Adding ion-content gives me smooth scrolling on this page in my app for all elements in the view. Otherwise, because my oneTimeSplash div sticks to the top of the page (below the top nav bar), my ion-list won’t scroll fully to display the text below the bottom tab bar.