Skip to content

Commit 533cfaf

Browse files
committed
chore(fc): remove app name from main root temp screen
Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent 2031a9d commit 533cfaf

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

  • flipchatApp/src/main/kotlin/xyz/flipchat/app/ui/navigation

flipchatApp/src/main/kotlin/xyz/flipchat/app/ui/navigation/MainRoot.kt

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ import androidx.compose.foundation.layout.Column
99
import androidx.compose.foundation.layout.Spacer
1010
import androidx.compose.foundation.layout.fillMaxSize
1111
import androidx.compose.foundation.layout.fillMaxWidth
12+
import androidx.compose.foundation.layout.padding
1213
import androidx.compose.foundation.layout.requiredHeight
14+
import androidx.compose.foundation.layout.size
1315
import androidx.compose.material.Text
1416
import androidx.compose.runtime.Composable
1517
import androidx.compose.runtime.LaunchedEffect
@@ -22,6 +24,7 @@ import androidx.compose.ui.Modifier
2224
import androidx.compose.ui.draw.alpha
2325
import androidx.compose.ui.res.painterResource
2426
import androidx.compose.ui.res.stringResource
27+
import androidx.compose.ui.unit.dp
2528
import cafe.adriel.voyager.core.registry.ScreenRegistry
2629
import cafe.adriel.voyager.core.screen.Screen
2730
import cafe.adriel.voyager.core.screen.ScreenKey
@@ -81,12 +84,6 @@ internal object MainRoot : Screen {
8184
Image(
8285
painter = painterResource(R.drawable.flipchat_logo),
8386
contentDescription = null,
84-
modifier = Modifier
85-
)
86-
Text(
87-
text = stringResource(R.string.app_name_without_variant),
88-
style = CodeTheme.typography.displayMedium,
89-
color = White
9087
)
9188
}
9289

0 commit comments

Comments
 (0)