python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
ComposeView with dynamic height flickering inside ConstraintLayout
I have a ComposeView inside a ConstraintLayout like that:
<androidx.compose.ui.platform.ComposeView
android:id="@+id/compose"
android:layout_width="match_parent&q...
g_lasso
Votes: 0
Answers: 1
Is there something stuck my app before Application is initialized?
I am using Jetpack Compose. When I open my app, it displays a blank page with a status bar in primary color before my first activity shows up, for some reasons I can't post code snippets here please c...
Wayne
Votes: 0
Answers: 1
How can I get string resource in Jetpack composable test
We can get the string resource in Composable through stringResource like
@Composable
fun Heading(
@StringRes textResource: Int
) {
Text(
text = stringResource(id = textResource),
...
Shahab Rauf
Votes: 0
Answers: 3
Jetpack Compose Navigation dialog configuration
I have a NavHost that looks something like this:
NavHost(
navController = navController,
startDestination = Screen.MAIN.route,
modifier = modifier
) {
dialog(
Screen.LOGIN.rout...
SMGhost
Votes: 0
Answers: 1