颤振中的动态数据模型

时间:2020-02-16 01:24:15

标签: android flutter dart

我在应用程序中将数据硬编码,但在这样的不同文件中

enter image description here

然后我在Widget build(BuildContext context

内部获取数据
    final category = Categories.fetchAll();
    final offer = Offers.fetchAll();
    final offer1 = offer.first;
    final popTuts = PopularTuts.fetchAll();

并在listview.builder中显示数据

ListView.builder(
                    padding: EdgeInsets.only(left: 5.0, right: 5.0),
                    physics: BouncingScrollPhysics(),
                    scrollDirection: Axis.horizontal,
                    itemCount: category.length,
                    itemBuilder: (BuildContext context, int index) {
                      Categories categories = category[index];

我只是想了解您对此的看法,这很好,但是有人说这不是一种有效的方法。有谁知道最好的方法是什么?

0 个答案:

没有答案