在安全区域的空值上使用空检查运算符

Null check operator used on a null value on safe area

帮帮我,这几天我还卡在这里。为什么会这样?错误表示“dashboard_bottom_nav”有错误

当我尝试单击错误时,它会将我引导至此 class 并将其引导至 SafeArea

我真的需要你的帮助

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

    // 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.