mirror of
https://github.com/bitwarden/android.git
synced 2025-03-15 18:58:59 +03:00
Ensure SplashScreen composable has content to fix intro transition (#452)
This commit is contained in:
parent
6665f20af9
commit
9e7cd65fe1
1 changed files with 6 additions and 1 deletions
|
@ -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())
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue