How to convert Future<List> to List in flutter?
问题 I am using a plugin for flutter called search_widget . The data parameter of this widget takes a list. But as I use sqlite for fetching data, I have it in Future<List> form. Is there any way I can convert Future<List> to List ? Or any other way to get this working. 回答1: Borrowing the example from search_widget you need dataList in a widget like this: SearchWidget<LeaderBoard>( dataList: list, textFieldBuilder: (TextEditingController controller, FocusNode focusNode) { return MyTextField