feat: keep the offset of the recent section (#4466)

This commit is contained in:
Lucas.Xu 2024-01-23 16:54:04 +08:00 committed by GitHub
parent e239ba46aa
commit 827e41348b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,10 +25,9 @@ class _MobileRecentFolderState extends State<MobileRecentFolder> {
child: BlocBuilder<RecentViewsBloc, RecentViewsState>(
builder: (context, state) {
final ids = <String>{};
List<ViewPB> recentViews = state.views.reversed.toList();
final List<ViewPB> recentViews = state.views.reversed.toList();
recentViews.retainWhere((element) => ids.add(element.id));
// only keep the first 10 items.
recentViews = recentViews.take(10).toList();
if (recentViews.isEmpty) {
return const SizedBox.shrink();
@ -72,6 +71,7 @@ class _RecentViews extends StatelessWidget {
),
),
SingleChildScrollView(
key: const PageStorageKey('recent_views_page_storage_key'),
scrollDirection: Axis.horizontal,
padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 8),
child: IntrinsicHeight(