我在应用程序中将数据硬编码,但在这样的不同文件中
然后我在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];
我只是想了解您对此的看法,这很好,但是有人说这不是一种有效的方法。有谁知道最好的方法是什么?