帮助我,过去几天我仍然被困在这里。为什么会这样?错误表示“dashboard_bottom_nav”中存在错误
当我尝试单击错误时,它会将我定向到此类并将其定向到 SafeArea
我真的需要你的帮助
答案 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.