Skip to content

Commit 364b384

Browse files
committed
Fix paged list view shows empty if not using dates
1 parent 34e7409 commit 364b384

File tree

7 files changed

+220
-226
lines changed

7 files changed

+220
-226
lines changed

app/android/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GEM
1111
artifactory (3.0.17)
1212
atomos (0.1.3)
1313
aws-eventstream (1.3.2)
14-
aws-partitions (1.1090.0)
14+
aws-partitions (1.1092.0)
1515
aws-sdk-core (3.222.2)
1616
aws-eventstream (~> 1, >= 1.3.0)
1717
aws-partitions (~> 1, >= 1.992.0)
@@ -158,7 +158,7 @@ GEM
158158
httpclient (2.9.0)
159159
mutex_m
160160
jmespath (1.6.2)
161-
json (2.10.2)
161+
json (2.11.3)
162162
jwt (2.10.1)
163163
base64
164164
logger (1.7.0)

app/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=20f1b1176237254a6fc204d8434196fa11a4cfb387567519c61556e8710aed78
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionSha256Sum=61ad310d3c7d3e5da131b76bbf22b5a4c0786e9d892dae8c1658d4b484de3caa
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

app/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pluginManagement {
1818

1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21-
id "com.android.application" version '8.9.1' apply false
21+
id "com.android.application" version '8.9.2' apply false
2222
id "org.jetbrains.kotlin.android" version "2.0.21" apply false
2323
}
2424

app/lib/widgets/paging/list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class _PagedListViewState<T> extends State<_PagedListView<T>> {
113113
final state = widget.state;
114114
final items = state.items;
115115
final dates = state.dates;
116-
if (items.isEmpty) {
116+
if (items.isEmpty && !useDates) {
117117
return const EmptyIndicatorDisplay();
118118
}
119119
return ListView.builder(

app/pubspec.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -545,10 +545,10 @@ packages:
545545
dependency: transitive
546546
description:
547547
name: html
548-
sha256: "9475be233c437f0e3637af55e7702cbbe5c23a68bd56e8a5fa2d426297b7c6c8"
548+
sha256: "6d1264f2dffa1b1101c25a91dff0dc2daee4c18e87cd8538729773c073dbf602"
549549
url: "https://pub.dev"
550550
source: hosted
551-
version: "0.15.5+1"
551+
version: "0.15.6"
552552
http:
553553
dependency: "direct main"
554554
description:
@@ -1273,10 +1273,10 @@ packages:
12731273
dependency: transitive
12741274
description:
12751275
name: url_launcher_web
1276-
sha256: "3ba963161bd0fe395917ba881d320b9c4f6dd3c4a233da62ab18a5025c85f1e9"
1276+
sha256: "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2"
12771277
url: "https://pub.dev"
12781278
source: hosted
1279-
version: "2.4.0"
1279+
version: "2.4.1"
12801280
url_launcher_windows:
12811281
dependency: transitive
12821282
description:

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"dependencies": {
1313
"@astrojs/check": "^0.9.4",
1414
"@astrojs/react": "^4.2.5",
15-
"@astrojs/starlight": "^0.34.0",
15+
"@astrojs/starlight": "^0.34.1",
1616
"@phosphor-icons/react": "^2.1.7",
1717
"@types/react": "^19.1.2",
1818
"@types/react-dom": "^19.1.2",
19-
"astro": "^5.7.5",
19+
"astro": "^5.7.6",
2020
"react": "^19.1.0",
2121
"react-dom": "^19.1.0",
2222
"remark-gemoji": "^8.0.0",

0 commit comments

Comments
 (0)