fix: 首页搜索框频繁点击消失、评论排序切换空白

This commit is contained in:
guozhigq
2023-08-24 09:54:24 +08:00
parent 9da113726b
commit 4314b0fc3c
2 changed files with 23 additions and 23 deletions

View File

@ -45,11 +45,7 @@ class _SearchPageState extends State<SearchPage> with RouteAware {
return OpenContainer(
closedElevation: 0,
openElevation: 0,
onClosed: (_) async {
// 在 openBuilder 关闭时触发的回调函数
await Future.delayed(const Duration(milliseconds: 500));
_searchController.onClear();
},
onClosed: (_) => _searchController.onClear(),
openColor: Theme.of(context).colorScheme.background,
middleColor: Theme.of(context).colorScheme.background,
closedColor: Theme.of(context).colorScheme.background,