空检查运算符用于安全区域的空值

时间:2021-06-30 04:11:41

标签: android flutter flutter-layout dart-null-safety

帮助我,过去几天我仍然被困在这里。为什么会这样?错误表示“dashboard_bottom_nav”中存在错误 error

当我尝试单击错误时,它会将我定向到此类并将其定向到 SafeArea enter image description here

我真的需要你的帮助

1 个答案:

答案 0 :(得分:1)

尝试使用以下代码可能会对您有所帮助,因为您的错误很明显,它说应该对可空对象应用空检查。

    // you can apply null handling on that line where it showing error
    var title = text;
    if (title != null) {
        var len = title.length; // Safe
    }


    //or use default null safety operator
    Use ?. and ??
    
    var len = title?.length ?? 0; // Provide a default value if title is null.