使用搜索委托时,我尝试使用标签栏和标签栏视图(如以下代码)自定义页面:
@override
Widget buildSuggestions(BuildContext context) {
// TODO: implement buildSuggestions
return DefaultTabController(
length: 3,
child: Widget here
),
);
我尝试使用CustomScrollView或NestedScrollView,但仍然无法使用,因为使用的控制器在搜索委托中不可用。您能帮我什么我应该把适当的小部件用来在搜索委托中构建tabbar和tabbarView吗?