fix: List dataType

This commit is contained in:
guozhigq
2024-02-28 00:45:13 +08:00
parent 542975d0ec
commit db03cdd442
11 changed files with 15 additions and 15 deletions

View File

@ -17,7 +17,7 @@ class DynamicDetailController extends GetxController {
int currentPage = 0;
bool isLoadingMore = false;
RxString noMore = ''.obs;
RxList<ReplyItemModel> replyList = [ReplyItemModel()].obs;
RxList<ReplyItemModel> replyList = <ReplyItemModel>[].obs;
RxInt acount = 0.obs;
final ScrollController scrollController = ScrollController();