Today i Use Below Code in Dynamic Component - Schema
{
"name": "Custom ListView",
"metadata-version": 1,
"author": "devcafe official",
"platforms": [
"Niotron"
],
"keys": [
"count",
"icon",
"title"
],
"components": [
{
"id": "{count}",
"type": "HorizontalArrangement",
"properties": {
"BackgroundColor": -1,
"isCard": true,
"AlignHorizontal": 1,
"AlignVertical": 2,
"Width": -2,
"Height": -1,
"Clickable": true
},
"components": [
{
"id": "image_{count}",
"type": "Image",
"properties": {
"Height": 35,
"Width": 35,
"Picture": "{icon}"
}
},
{
"id": "space_{count}",
"type": "SpaceView",
"properties": {
"WidthPercent": 5
}
},
{
"id": "label_{count}",
"type": "Label",
"properties": {
"Width": -2,
"Text": "{title}",
"FontSize": 16
}
}
]
}
]
}
But I Got This Error
Please help to resolve this error