'package:flutter / src / widegets / text.dart':失败的断言:235行pos 15:'数据! = NULL':不正确

时间:2019-03-17 07:35:54

标签: android ios dart flutter

问题:“ package:flutter / src / widegets / text.dart”:断言失败:第235行pos 15:“数据! = NULL':不正确 代码:

body: Container(
     child: FutureBuilder(
       future: _getQu(),
       builder: (BuildContext context, AsyncSnapshot snapshot){
         if (snapshot.data == null){
           return Container(
          child: Center(
            child: Text(" تحميل البينات........"),
          ),
           );
         }Dn.jpg

1 个答案:

答案 0 :(得分:0)

title: Text(snapshot.data[index].questions ?? ""),

Text Widget的数据不能为空。因此,您可以对其进行修改以使其与上面类似。如果为snapshot.data[index].questions == null,它将接受空字符串。