Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-11 11:21:27 +08:00
parent e7f27e4913
commit 95f1d1485d
26 changed files with 168 additions and 233 deletions

View File

@@ -223,9 +223,9 @@ List<SettingsModel> get playSettings => [
return SelectDialog<int>(
title: '默认全屏方向',
value: Pref.fullScreenMode,
values: FullScreenMode.values.map((e) {
return (e.index, e.desc);
}).toList(),
values: FullScreenMode.values
.map((e) => (e.index, e.desc))
.toList(),
);
},
);
@@ -248,9 +248,9 @@ List<SettingsModel> get playSettings => [
return SelectDialog<int>(
title: '底部进度条展示',
value: Pref.btmProgressBehavior,
values: BtmProgressBehavior.values.map((e) {
return (e.index, e.desc);
}).toList(),
values: BtmProgressBehavior.values
.map((e) => (e.index, e.desc))
.toList(),
);
},
);