Skip to content

Commit 3232f1b

Browse files
committed
Merge branch 'fix-edge-to-edge-warning'
2 parents 018fe96 + 897f04a commit 3232f1b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

android/app/src/main/kotlin/net/mullvad/mullvadvpn/ui/MainActivity.kt

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
package net.mullvad.mullvadvpn.ui
22

33
import android.content.Intent
4+
import android.graphics.Color
45
import android.os.Bundle
56
import androidx.activity.ComponentActivity
7+
import androidx.activity.SystemBarStyle
68
import androidx.activity.compose.setContent
9+
import androidx.activity.enableEdgeToEdge
710
import androidx.activity.result.contract.ActivityResultContracts
811
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
9-
import androidx.core.view.WindowCompat
1012
import androidx.lifecycle.Lifecycle
1113
import androidx.lifecycle.lifecycleScope
1214
import androidx.lifecycle.repeatOnLifecycle
@@ -59,9 +61,10 @@ class MainActivity : ComponentActivity(), AndroidScopeComponent {
5961
!isReady
6062
}
6163

62-
// Tell the system that we will draw behind the status bar and navigation bar
63-
// This needs to be called after installSplashScreen()
64-
WindowCompat.setDecorFitsSystemWindows(window, false)
64+
enableEdgeToEdge(
65+
statusBarStyle = SystemBarStyle.dark(Color.TRANSPARENT),
66+
navigationBarStyle = SystemBarStyle.dark(Color.TRANSPARENT),
67+
)
6568

6669
super.onCreate(savedInstanceState)
6770

0 commit comments

Comments
 (0)