- Updated App entry point to utilize Expo Router, simplifying the navigation setup. - Removed legacy navigation components and services to streamline the codebase. - Adjusted package.json to reflect the new entry point and updated dependencies for compatibility. - Enhanced overall application structure by consolidating navigation logic and improving maintainability.
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
/**
|
||
* 应用入口已由 Expo Router 接管(package.json main: expo-router/entry)。
|
||
* 全局 Provider 与根布局见 app/_layout.tsx。
|
||
*/
|
||
export default function App() {
|
||
return null;
|
||
}
|