We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps for reproducing the issue: main-page.xml
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded"> <ListView items="{{items}}" itemLoading="loading"> </ListView> </Page>
main-page.js
function pageLoaded(args) { var page = args.object; page.bindingContext = {items:[1,2,3]};; } exports.loading = function(){ console.log("item loading"); }
When the app is run on android all "item loading" is printed several times. When it is run on iOS - it prints "item loading" only once.
The text was updated successfully, but these errors were encountered:
Cannot reproduce with latest
Sorry, something went wrong.
rosen-vladimirov
No branches or pull requests
Steps for reproducing the issue:
main-page.xml
main-page.js
When the app is run on android all "item loading" is printed several times. When it is run on iOS - it prints "item loading" only once.
The text was updated successfully, but these errors were encountered: