【Flutter】Error: ‘SearchBar‘ is imported from both ‘package:flutter/src/material/search_anchor.dart‘

问题描述

Error: 'SearchBar' is imported from both 'package:flutter/src/material/search_anchor.dart' and 'package:flutter_trip/widget/search_bar.dart'.

在这里插入图片描述


原因分析:

自定义的search_anchor组件与系统的widget重名了,编译器不知道导入那个包了。


解决方案:

选中重名的类名按shift+fn+f6修改一个新的类名就解决了。

猜你喜欢

转载自blog.csdn.net/luozegang86/article/details/134724771