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 Álison Fernandes
parent 6665f20af9
commit 9e7cd65fe1

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())
}