From 12f90a411b7eff553391a4a41a9278c247ec7c09 Mon Sep 17 00:00:00 2001 From: guozhigq Date: Sat, 16 Dec 2023 22:12:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=A6=96=E9=A1=B5=E6=8E=A8=E8=8D=90?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E5=8A=A0=E8=BD=BD=E6=9B=B4=E5=A4=9A=E6=97=A0?= =?UTF-8?q?=E5=93=8D=E5=BA=94=20issues=20#270?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/rcmd/view.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/rcmd/view.dart b/lib/pages/rcmd/view.dart index 1236ea33..717ea9f7 100644 --- a/lib/pages/rcmd/view.dart +++ b/lib/pages/rcmd/view.dart @@ -50,7 +50,6 @@ class _RcmdPageState extends State _rcmdController.onLoad(); }); } - final ScrollDirection direction = scrollController.position.userScrollDirection; if (direction == ScrollDirection.forward) { @@ -208,12 +207,13 @@ class LoadingMore extends StatelessWidget { child: GestureDetector( onTap: () { if (ctr != null) { + ctr!.isLoadingMore = true; ctr!.onLoad(); } }, child: Center( child: Text( - '加载更多 👇', + '点击加载更多 👇', style: TextStyle( color: Theme.of(context).colorScheme.outline, fontSize: 13), ),