File tree 1 file changed +7
-4
lines changed
android/app/src/main/kotlin/net/mullvad/mullvadvpn/ui
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
package net.mullvad.mullvadvpn.ui
2
2
3
3
import android.content.Intent
4
+ import android.graphics.Color
4
5
import android.os.Bundle
5
6
import androidx.activity.ComponentActivity
7
+ import androidx.activity.SystemBarStyle
6
8
import androidx.activity.compose.setContent
9
+ import androidx.activity.enableEdgeToEdge
7
10
import androidx.activity.result.contract.ActivityResultContracts
8
11
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
9
- import androidx.core.view.WindowCompat
10
12
import androidx.lifecycle.Lifecycle
11
13
import androidx.lifecycle.lifecycleScope
12
14
import androidx.lifecycle.repeatOnLifecycle
@@ -59,9 +61,10 @@ class MainActivity : ComponentActivity(), AndroidScopeComponent {
59
61
! isReady
60
62
}
61
63
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
+ )
65
68
66
69
super .onCreate(savedInstanceState)
67
70
You can’t perform that action at this time.
0 commit comments