diff --git a/capacitor.config.ts b/capacitor.config.ts index 58e2696..8790349 100644 --- a/capacitor.config.ts +++ b/capacitor.config.ts @@ -15,20 +15,22 @@ const config: CapacitorConfig = { contentInset: 'always', scrollEnabled: true, limitsNavigationsToAppBoundDomains: false, - backgroundColor: '#ffffff', + // Fond noir natif : évite le flash blanc du WebView entre 2 pages + backgroundColor: '#000000', }, plugins: { SplashScreen: { launchShowDuration: 1500, launchAutoHide: true, - backgroundColor: '#ffffff', + backgroundColor: '#000000', showSpinner: false, splashImmersive: false, }, StatusBar: { - style: 'DEFAULT', - backgroundColor: '#ffffff', + // App dark : style LIGHT = icônes/texte status bar en blanc sur fond noir + style: 'LIGHT', + backgroundColor: '#000000', overlaysWebView: false, }, PushNotifications: {