import { Stack } from 'expo-router'; import { SQLiteProvider } from 'expo-sqlite'; import { StatusBar } from 'expo-status-bar'; import { migrateDb } from '@/db'; import { PyodideWebView } from '@/extraction/PyodideWebView'; export default function RootLayout() { return ( <> {/* Hidden WebView: starts loading Pyodide immediately so the runtime is warm by the time the user opens the Import tab. */} ); }