brianegan / flutter_redux

A library that connects Widgets to a Redux Store
MIT License
1.65k stars 217 forks source link

search_screen err #173

Closed stational closed 3 years ago

stational commented 4 years ago

i get an error in search_screen.dart the error render at :

Widget _buildVisible(SearchState state) { if (state is SearchLoading) { return SearchLoadingView(); } else if (state is SearchEmpty) { return SearchEmptyView(); } else if (state is SearchPopulated) { /// ide show that the state.resultdoes not match the require param return SearchPopulatedView(state.result);
} else if (state is SearchInitial) { return SearchInitialView(); } else if (state is SearchError) { return SearchErrorWidget(); }

brianegan commented 3 years ago

fixed any errors with example and latest version