Hanran
Hanran
> 联系人列表,带indexbar(快速索引栏)的那种 这个有考虑,应该会在后两三个版本加入进来。
> It's not my case but someone could be interested in a Range Slider. > > * Flutter official: [RangeSlider class](https://api.flutter.dev/flutter/material/RangeSlider-class.html) > * [flutter_range_slider](https://pub.dev/packages/flutter_range_slider) on pub.dev > * [cupertino_range_slider](https://pub.dev/packages/cupertino_range_slider) on...
> How about dropdown & date time picker? i think that was very popular widget in flutter 😊 @bagaswastu thanks, i think u can use flutter official dropdown or pickers....
> 我最近在重构我的一个flutter项目,是新闻资讯、社区类的,看到您的项目,感慨一下终于不用自己忙乎重构一些设计规范了。Dynamic 模块也是令人眼前一亮。 > > 至于未来其他组件,建议作者可以看看这个项目作为一些参考:[GetFlutter](https://docs.getflutter.dev/) > > 个人的话,会希望有一些可以用于资讯列表的组件,比如:左右图文、大图、帖子样式等。 > > 当然,我也会尝试提交新组件。 > > 感谢您的开源贡献。 @LLemonGreen 感谢,也希望有更多的人能参与进来。实现之初也是因为开源社区里文档不太完善,推荐大家来贡献一些官方没有的组件,我会跟进文档和 Demo。 另外我也会持续关注添加一些 UI 相关的功能模块。
@SPingels 没有用过 PopupMenuButton,不过看起来你能把它包在一个容器里来控制背景吗 @zhaobq-debug 这个我会考虑下
@Prn-Ice @alvinvin00 ok, i will consider these widgets.
hi @rizalgunawan, dynamic component is a container, u can use `setState` to change json object in dynamic or just return widget directly: ``` FutureBuilder( future: fetchPost(), builder: (BuildContext context, AsyncSnapshot...
hi @rizalgunawan,i think you can try like this: ``` (jsonlist) => { final list = []; jsonlist.forEach((item) { list.add(FLDyContainer( jsonObject: item)); }); // return list or set state to change...
@rizalgunawan i see, It is not supported to disassemble it for refreshing children. so i only can suggest you to write a list view in code and just change children...
@rizalgunawan FLUI-Dynamic will add dynamic value binding in the future, may also support this kind of splicing to meet your needs... thanks.