fix: 关注列表不足一屏时无法下拉刷新

This commit is contained in:
guozhigq
2023-10-24 23:47:50 +08:00
parent 101ae2e991
commit eda8a5c6a7

View File

@ -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<OwnerFollowList>
return Obx(
() => followList.isNotEmpty
? ListView.builder(
physics: const AlwaysScrollableScrollPhysics(),
controller: scrollController,
itemCount: followList.length + 1,
itemBuilder: (BuildContext context, int index) {