Hello guys, I’m new on Flutter and Dart but I’m having an issue with SearchBar on first load.
Looks like you use a recently new version of Flutter which has a widget with the same name SearchBar
as the custom one in the project.
You can fix it by renaming with refactoring (F2
hotkey for VSCode) SearchBar
from the file projects\starter\packages\component_library\lib\src\search_bar.dart
to something different, AppSearchBar
for instance.