mod: ai总结样式
This commit is contained in:
@ -15,6 +15,7 @@ class GlobalDataCache {
|
||||
late FullScreenGestureMode fullScreenGestureMode;
|
||||
late bool enablePlayerControlAnimation;
|
||||
late List<String> actionTypeSort;
|
||||
late double sheetHeight;
|
||||
String? wWebid;
|
||||
|
||||
/// 播放器相关
|
||||
@ -103,5 +104,6 @@ class GlobalDataCache {
|
||||
speedsList.addAll(playSpeedSystem);
|
||||
|
||||
userInfo = userInfoCache.get('userInfoCache');
|
||||
sheetHeight = localCache.get('sheetHeight');
|
||||
}
|
||||
}
|
||||
|
||||
@ -351,6 +351,9 @@ class Utils {
|
||||
|
||||
// 时间戳转时间
|
||||
static tampToSeektime(number) {
|
||||
if (number is String && int.tryParse(number) == null) {
|
||||
return number;
|
||||
}
|
||||
int hours = number ~/ 60;
|
||||
int minutes = number % 60;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user