feat: 动态侧栏新增按最常访问显示所有已关注Up功能;抽屉式侧栏限制安全域

This commit is contained in:
orz12
2024-07-11 17:36:47 +08:00
parent e69c723e19
commit 99224640d8
6 changed files with 96 additions and 7 deletions

View File

@@ -257,7 +257,7 @@ class _ExtraSettingState extends State<ExtraSetting> {
return SelectDialog<int>(
title: '动态展示',
value: defaultDynamicType,
values: DynamicsType.values.map((e) {
values: DynamicsType.values.sublist(0, 4).map((e) {
return {'title': e.labels, 'value': e.index};
}).toList());
},