fix: ReplyReplyPanel reBuild

This commit is contained in:
guozhigq
2023-07-25 20:07:24 +08:00
parent ec4c94cf5e
commit 9f7b631a41

View File

@ -37,6 +37,7 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
late AnimationController replyAnimationCtl; late AnimationController replyAnimationCtl;
Box localCache = GStrorage.localCache; Box localCache = GStrorage.localCache;
late double sheetHeight; late double sheetHeight;
Future? _futureBuilderFuture;
@override @override
void initState() { void initState() {
@ -61,6 +62,7 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
); );
sheetHeight = localCache.get('sheetHeight'); sheetHeight = localCache.get('sheetHeight');
_futureBuilderFuture = _videoReplyReplyController.queryReplyList();
} }
@override @override
@ -134,7 +136,7 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
), ),
], ],
FutureBuilder( FutureBuilder(
future: _videoReplyReplyController.queryReplyList(), future: _futureBuilderFuture,
builder: (context, snapshot) { builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.done) { if (snapshot.connectionState == ConnectionState.done) {
Map data = snapshot.data as Map; Map data = snapshot.data as Map;