暂存数据

This commit is contained in:
Vegas
2025-11-11 15:34:50 +07:00
parent e384316b44
commit a8e67a5403
2 changed files with 139 additions and 32 deletions

View File

@@ -1,3 +1,9 @@
// App.js 或 index.js 文件的最顶部
if (typeof setImmediate === 'undefined') {
global.setImmediate = function(callback, ...args) {
return setTimeout(callback, 0, ...args);
};
}
import { DarkTheme, DefaultTheme, ThemeProvider } from '@react-navigation/native';
import { Stack } from 'expo-router';
import { StatusBar } from 'expo-status-bar';