dengyin2000 / dynamic_widget

A Backend-Driven UI toolkit, build your dynamic UI with json, and the json format is very similar with flutter widget code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ListView with scrollDirection horizontal not working

ZwooMobile opened this issue · comments

Hi, im having issue in rendering ListView with horizontal scroll direction. I want to create a scrollable horizontal listview. Am i missing out some settings?

Thank you

This is my JSON:

{ "type": "Container", "alignment": "center", "child": { "type": "ListView", "scrollDirection": "horizontal", "margin": "8,8,8,8", "children" : [{ "type": "Container", "color":"#FF00FF", "width": 500.0, "height": 50, "child":{ "type": "Text", "data":"kimmy1", "textAlign":"center" } }, { "type": "Container", "color":"#FF00FF", "width": 500.0, "height": 50, "child":{ "type": "Text", "data":"kimmyB", "textAlign":"center" } }, { "type": "Container", "color":"#FF00FF", "width": 500.0, "height": 50, "child":{ "type": "Text", "data":"kimmy3", "textAlign":"center" } }] } }

Hi @ZwooMobile

I have fix the bug in the latest master branch. please check it.

@dengyin2000 hello sir, excuse me, do listview.builder can be supported by this plugin?