We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MaterialApp( builder: (context, child) { //FlutterEasyLoading放在这里解决放到外层输入框长按报错 return FlutterEasyLoading(child: child); },
这样写会有下划线,不这样写长按输入框报错,求解决啊!!!
The text was updated successfully, but these errors were encountered:
解决方案
builder: (BuildContext context, Widget child) { return Material( type: MaterialType.transparency, child: FlutterEasyLoading( child: child, ), ); },
Sorry, something went wrong.
type: MaterialType.transparency,
好的,谢谢,不过我发现不加type: MaterialType.transparency,也可以,不知道加这个的作用是?
@silentchild 新版已经修复了,原因是:Text 属于Material 风格下的组件,如果根节点不是Material相关组件,则会使用默认带黄色下划线的格式
No branches or pull requests
MaterialApp(
builder: (context, child) {
//FlutterEasyLoading放在这里解决放到外层输入框长按报错
return FlutterEasyLoading(child: child);
},
这样写会有下划线,不这样写长按输入框报错,求解决啊!!!
The text was updated successfully, but these errors were encountered: