From eda8a5c6a711e90bdb73bc0f47ef7eb60d518acb Mon Sep 17 00:00:00 2001 From: guozhigq Date: Tue, 24 Oct 2023 23:47:50 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=85=B3=E6=B3=A8=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E4=B8=8D=E8=B6=B3=E4=B8=80=E5=B1=8F=E6=97=B6=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E4=B8=8B=E6=8B=89=E5=88=B7=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/follow/widgets/owner_follow_list.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/pages/follow/widgets/owner_follow_list.dart b/lib/pages/follow/widgets/owner_follow_list.dart index e622bd5a..0dcd785d 100644 --- a/lib/pages/follow/widgets/owner_follow_list.dart +++ b/lib/pages/follow/widgets/owner_follow_list.dart @@ -1,3 +1,5 @@ +import 'dart:math'; + import 'package:easy_debounce/easy_throttle.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; @@ -89,6 +91,7 @@ class _OwnerFollowListState extends State return Obx( () => followList.isNotEmpty ? ListView.builder( + physics: const AlwaysScrollableScrollPhysics(), controller: scrollController, itemCount: followList.length + 1, itemBuilder: (BuildContext context, int index) {