"BCVatOVG" wrote:
But I do see one mistake on line 20
showRowLabel = "false"
It's supposed to be an array of boolean
https://sdkdocs.roku.com/display/sdkdoc/RowList
"Specifies whether the row label on the left edge of each row is displayed. If the array contains fewer elements than the number of rows in the data model, the last value in array is used to control the display of the row label for the extra rows. If the array contains no values, no row labels are displayed."
So try:
showRowLabel = "[false]"
and see if that works. I suspect you are setting loadingBitmapUri in HomeScreen.brs but because it can't load the XML RowList component, you don't actually get a correct RowList node is my best guess.
Tried changing the value to an array, but it made no difference. Also tried adding the code in my brs file, but still not seeing the image.
m.videoList.loadingBitmapUri = "pkg:/images/placeholder-image.png"