🐛 Fix sticker filter didn't apply as expected in marketplace, close #219

This commit is contained in:
2025-12-27 23:02:48 +08:00
parent 37940ef12a
commit bc1ebc799a
2 changed files with 5 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ class PaginationList<T> extends HookConsumerWidget {
);
return SizedBox(
key: const ValueKey('loading'),
child: ListView(children: content),
child: ListView(padding: padding, children: content),
);
}