dart - 如何在 flutter 中重建所有网格项目?

标签 dart flutter bloc

我有一个仪表板,由网格表示,它应该在长按事件中删除项目(使用 flutter_bloc ),但它删除了最后一个项目而不是选定的。所有调试打印显示,所需的元素实际上已从列表中删除,但 View 层仍保留它。

我的构建函数代码:

  Widget build(BuildContext context) {
    double pyxelRatio = MediaQuery.of(context).devicePixelRatio;
    double width = MediaQuery.of(context).size.width * pyxelRatio;

    return BlocProvider(
      bloc: _bloc,
        child: BlocBuilder<Request, DataState>(
        bloc: _bloc,
        builder: (context, state) {
          if (state is EmptyDataState) {
            print("Uninit");
            return Center(
              child: CircularProgressIndicator(),
            );
          }
          if (state is ErrorDataState) {
            print("Error");
            return Center(
              child: Text('Something went wrong..'),
            );
          }
          if (state is LoadedDataState) {
            print("empty: ${state.contracts.isEmpty}");
            if (state.contracts.isEmpty) {
              return Center(
                child: Text('Nothing here!'),
              );
            } else{
              print("items count: ${state.contracts.length}");              
              print("-------");
              for(int i = 0; i < state.contracts.length; i++){
                if(state.contracts[i].isFavorite)print("fut:${state.contracts[i].name} id:${state.contracts[i].id}");
              }
              print("--------");  

              List<Widget> testList = new List<Widget>();
              for(int i = 0; i < state.contracts.length; i++){
                if(state.contracts[i].isFavorite) testList.add(
                  InkResponse(
                  enableFeedback: true,
                  onLongPress: (){
                    showShortToast();
                    DashBLOC dashBloc = BlocProvider.of<DashBLOC>(context);
                    dashBloc.dispatch(new UnfavRequest(state.contracts[i].id));
                  },
                  onTap: onTap,
                  child:DashboardCardWidget(state.contracts[i])
                  )
              );
              }
              return GridView.count(
                  crossAxisCount: width >= 900 ? 2 : 1,
                  padding: const EdgeInsets.all(2.0),
                  children: testList
              );
            }
          }
      })
    );
  }

full class codedashboard bloc

看起来网格会自行重建,但不会重建其瓦片。 我怎样才能完全更新网格小部件及其所有子小部件?

p.s 我花了两天时间修复它,请帮助

最佳答案

我认为您应该使用 GridView.builder 构造函数来指定一个构建函数,该函数将根据项目列表的更改进行更新,因此当您的数据发生任何更新时,BlocBuilder 将触发 GridView 中的构建函数。

我希望这个例子能让它更清楚。

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Test(),
    );
  }
}

class Test extends StatefulWidget {
  @override
  _TestState createState() => _TestState();
}

class _TestState extends State<Test> {
  List<int> testList = List<int>();

  @override
  void initState() {
    for (int i = 0; i < 20; i++) {
      testList.add(i);
    }
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(),
      floatingActionButton: FloatingActionButton(
        //Here we can remove an item from the list and using setState
        //or BlocBuilder will rebuild the grid with the new list data
        onPressed: () => setState(() {testList.removeLast();})
      ),
      body: GridView.builder(
        // You must specify the items count of your grid
        itemCount: testList.length,
        // You must use the GridDelegate to specify row item count
        // and spacing between items
        gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
          crossAxisCount: 5,
          childAspectRatio: 1.0,
          crossAxisSpacing: 1.0,
          mainAxisSpacing: 1.0,
        ),
        // Here you can build your desired widget which will rebuild
        // upon changes using setState or BlocBuilder
        itemBuilder: (BuildContext context, int index) {
          return Text(
            testList[index].toString(),
            textScaleFactor: 1.3,
          );
        },
      ),
    );
  }
}

关于dart - 如何在 flutter 中重建所有网格项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55539044/

相关文章:

dart - 删除带有事件监听器的DOM元素是否会导致dart:html中发生内存泄漏?

dart - 我需要在使用之前将我的 Dart 包发布到 pub.dartlang.org 吗?

flutter_bloc : ^6. 1.1 不改变状态

android-studio - Main.dart 在 android studio 中无法识别为 .dart 文件

angular - 如何在 Dart Angular 中编写双向绑定(bind)

flutter - 通过从flutter中的另一个列表中获取引用来过滤列表

flutter - 如何在列表上方添加按钮?

intellij-idea - Alt+Enter 停止在 IntelliJ 中处理 Dart 文件

flutter - 为什么我应该使用带有日历的 Bloc 而不是静态 map ?

dart - 如何在 BLOC 的 Flutter 的 BottomNavigationBar 中设置 currentIndex?