From d906c07a42f62f2bdab05b8f8a6f315c5331e255 Mon Sep 17 00:00:00 2001 From: MohammadTaha Basiri Date: Fri, 25 Mar 2022 22:36:52 +0430 Subject: [PATCH] hashtags pagination bug fixed --- lib/views/home/hashtag/hashtag_state.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/views/home/hashtag/hashtag_state.dart b/lib/views/home/hashtag/hashtag_state.dart index fc1e5e7..fbe6d78 100644 --- a/lib/views/home/hashtag/hashtag_state.dart +++ b/lib/views/home/hashtag/hashtag_state.dart @@ -25,6 +25,7 @@ class HashtagState extends CoreProvier { )); await service.httpGet(); if (service.isSuccess) { + lastPage = service.result['lastPage']; final contents = service.result['contents']; for (var i = 0; i < contents.length; i++) { items.add(OverviewData.fromJson(contents[i]));