在不可用的情况下更新Flutter ListTile

时间:2020-08-07 18:38:24

标签: flutter listview dart boolean dart-pub

目标是在点击时将开头字幕的ListTile中的值更改为 null 。点击会切换 _act 布尔值,但ListTile的前导和副标题值不会从其初始状态更改。我的ListView代码如下。请帮忙。

        return new ListView(
          children: querySnapShot.data.documents.map((DocumentSnapshot document) {
            bool _act = false;
            return new ListTile(
              leading: _act != false ? const Icon(Icons.remove_red_eye, color: Color(0xff00caff), size: 40) : null,
              title: new Text((DBProvider.db.idDeHasher(document['exampleid'], key) ?? 'fallback'), style: TextStyle(color: secondaryColor)),
              subtitle: _act != false ? new Text((document['exampleString']  ?? 'fallbackString'), style: TextStyle(color: secondaryColor)) : null,
              onTap: () { 
                _act = !_act;
                print(_act.toString());
                }
            );
          }).toList(),
        );

3 个答案:

答案 0 :(得分:1)

您需要将窗口小部件设为Stateful Widget,并在setState上点击时调用ListTile

根据docs

调用setState会通知框架此对象的内部状态已更改,该方式可能会影响此子树中的用户界面,这会导致框架为该State对象安排构建。

因此,如果窗口小部件的状态发生变化,您必须调用setState来触发视图重建,并立即查看新状态所隐含的更改。

我以您的代码为例添加了一个演示:

     // define a list of acts
        List _acts = [];
         return new ListView(
          children: querySnapShot.data.documents.asMap().entries.map((entry) {
          // declare all entries of the list to false
          acts.add(false);
          // access the index 
          int index = entry.key;
          // access the document
          DocumentSnapshot document = entry.value;
          // DocumentSnapshot document = entry
            return new ListTile(
              leading: _acts[index] != false ? const Icon(Icons.remove_red_eye, color: Color(0xff00caff), size: 40) : null,
              title: new Text((DBProvider.db.idDeHasher(entry.val['exampleid'], key) ?? 'fallback'), style: TextStyle(color: secondaryColor)),
              subtitle: _acts[index] != false ? new Text((document['exampleString']  ?? 'fallbackString'), style: TextStyle(color: secondaryColor)) : null,
              onTap: () { 
               // call setstate
              setState(() { // new line
              // change the bool variable based on the index
               _acts[index] = !_acts[index];
                print(_acts[index].toString());
              });
                }
            );
          }).toList(),
        );

答案 1 :(得分:0)

onTap: () { 
setState((){
                _act = !_act;
                print(_act.toString());
                }
});

只需复制并粘贴它即可。

答案 2 :(得分:0)

替换下面的bool _act = false;

class _SomeClass extends State<SomeClass> { 并用setState({});

包围