List View with Airtable

images have id’s as they are created by Extension.

Search for that unique id.

Are you sure in schema template fully clickable is set to true. I have not checked it, @WatermelonIce created it.

How can I set it? The JSON:

{
  "name": "BigImage ListView",
  "metadata-version": 1,
  "author": "Maayur (rewritten by WaterMelonIce)",
  "platforms": [
    "Kodular"
  ],
  "keys": [
    "count",
    "title",
    "subtitle"
  ],
  "components": [
    {
      "id": "{count}",
      "type": "MakeroidCardView",
      "properties": {
        "ContentPaddingBottom": 0,
        "ContentPaddingLeft": 0,
        "ContentPaddingRight": 0,
        "ContentPaddingTop": 0,
        "AlignHorizontal": 3,
        "AlignVertical": 2,
        "Width": -2,
        "Height": -1,
        "CornerRadius": 5
      },
      "components": [
        {
          "id": "HorizontalArrangement_{count}",
          "type": "HorizontalArrangement",
          "properties": {
            "AlignHorizontal": 1,
            "AlignVertical": 2,
            "Width": -2
          },
          "components": [
            {
              "id": "Image_{count}",
              "type": "Image",
              "properties": {
                "HeightPercent": 14,
                "WidthPercent": 32,
                "ScalePictureToFit": true
              }
            },
            {
              "id": "Space_{count}",
              "type": "SpaceView",
              "properties": {
                "WidthPercent": 3
              }
            },
            {
              "id": "VerticalArrangement_{count}",
              "type": "VerticalArrangement",
              "properties": {
                "AlignHorizontal": 1,
                "AlignVertical": 1,
                "Height": -1,
                "Width": -2
              },
              "components": [
                {
                  "id": "label_{count}",
                  "type": "Label",
                  "properties": {
                    "Width": -2,
                    "FontTypefaceImport": "Product_Sans_Bold.ttf",
                    "FontSize": 23,
                    "TextColor": -16738680,
                    "Text": "{title}"
                  }
                },
                {
                  "id": "subLabel_{count}",
                  "type": "Label",
                  "properties": {
                    "Width": -2,
                    "FontTypefaceImport": "Product_Sans_Bold.ttf",
                    "FontSize": 15,
                    "TextColor": -1565085,
                    "Text": "{subtitle}"
                  }
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

I don’t know because

1 Like

I have set it. Now it works. You have to add
"FullClickable": true

2 Likes

Yes, I just write the schema according to @themaayur blocks. You can customize it.

3 Likes

I’ve finished the APP :smiley:

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.