Hi,
I’m new to Onsen and I’ve got a problem with lists which are longer than the screen. When I want to scroll to the end of the list it sometimes doesn’t react at all and sometimes it works (but with an offset so “1cm” of finger movement doesn’t correspond to “1cm” of the list). To me it seems like it doesn’t detect the touch event right but this is just a guess.
Here is my code that I use for the list (Onsen2).
<ons-page>
<ons-toolbar>
<div class="left">
<ons-toolbar-button onclick="fn.open()">
<ons-icon icon="md-menu"></ons-icon>
</ons-toolbar-button>
</div>
<div class="center">
Settings
</div>
</ons-toolbar>
<ons-list>
<ons-list-item>
<div class="list__item__left">
<ons-icon icon="md-face" class="list__item__icon"></ons-icon>
</div>
<div class="list__item__center">
<ons-input id="username" modifier="underbar" placeholder="Your name" float></ons-input>
</div>
<div class="list__item__right"></div>
</ons-list-item>
...
[multiple copies of the last list item]
...
</ons-list>
Best regards,
Daniel