Ensure SplashScreen composable has content to fix intro transition (#452)

This commit is contained in:
Brian Yencho
2023-12-29 05:50:43 -06:00
committed by GitHub
parent 426dce2961
commit 3ba6fa4f0f

View File

@@ -1,9 +1,14 @@
package com.x8bit.bitwarden.ui.platform.feature.splash
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
/**
* Splash screen with empty composable content so that the Activity window background is shown.
*/
@Composable
fun SplashScreen() = Unit
fun SplashScreen() {
Box(modifier = Modifier.fillMaxSize())
}