flutter '必须向文本小部件提供非空字符串,',如何解决此问题

hgc7kmma  于 2023-03-24  发布在  Flutter
关注(0)|答案(1)|浏览(146)

assert(data!= null,'必须向文本小部件提供非空字符串.',),textSpan = null
在构建Consumer(dependencies:[MediaQuery,_InheritedProviderScope〈LocationProvider?〉,_InheritedTheme,_LocalizationsScope-[GlobalKey#42a4f]]):必须为文本小部件提供非空字符串。'package:flutter/src/widgets/text. dart':Assert失败:第444行位置10:'data!= null'

fjaof16o

fjaof16o1#

Text(yourText!=null?yourText!:'')

其中yourText是你给文本的字符串。

相关问题