Can anyone help me with this issue? The listview is showing only one row.
Is there a way to show all the items in the listview?
XML View
<ScrollView>
<stack-layout id="stackID">
</stack-layout>
</ScrollView>
Code Behind
var listViewModule = require("ui/list-view");
var layout = page.getViewById("stackID");
var listView = new listViewModule.ListView();
var colors = ["red", "green", "blue"];
listView.items = colors;
layout.addChild(listView);
Screenshot
Two things:
Unless you have to; don't put a ListView inside a ScrollView. ListViews have their own scrollview code built in.
If you HAVE to put a ListView into the ScrollView, you need to set the Height of the ListView to make everything work properly. (It is also recommended you set the size of the ScrollView in this case also).
You layout should be