mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
feat: keep the offset of the recent section (#4466)
This commit is contained in:
parent
e239ba46aa
commit
827e41348b
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user