apply shadow only to one side of Box in jetpack compose
how to apply shoadow only to one or two side of a Box in jetpack compose ?
I want to apply shadow to bottom of this Column :
App always uses default theme instead of custom theme
I’m taking a course “Android basics with Jetpack compose” codelab:
Please explain how I should fix my code…
My result:
enter image description here
App always uses default theme instead of custom theme
I’m taking a course “Android basics with Jetpack compose” codelab:
Please explain how I should fix my code…
My result:
enter image description here
App always uses default theme instead of custom theme
I’m taking a course “Android basics with Jetpack compose” codelab:
Please explain how I should fix my code…
My result:
enter image description here
App always uses default theme instead of custom theme
I’m taking a course “Android basics with Jetpack compose” codelab:
Please explain how I should fix my code…
My result:
enter image description here
create transparent box with colored rounded corners in jetpack compose
I want to create a Box with Transparent background with rounded corners that is for example Red (In jetpack compose android kotlin).
I can put two Box on each other that below one is Green and top one in Red with rounded corners, but the issue is that if i want to Transparent the top one, we will see green, but i don’t want to green be shown, i want transparent
create transparent box with colored rounded corners in jetpack compose
I want to create a Box with Transparent background with rounded corners that is for example Red (In jetpack compose android kotlin).
I can put two Box on each other that below one is Green and top one in Red with rounded corners, but the issue is that if i want to Transparent the top one, we will see green, but i don’t want to green be shown, i want transparent
create transparent box with colored rounded corners in jetpack compose
I want to create a Box with Transparent background with rounded corners that is for example Red (In jetpack compose android kotlin).
I can put two Box on each other that below one is Green and top one in Red with rounded corners, but the issue is that if i want to Transparent the top one, we will see green, but i don’t want to green be shown, i want transparent
create transparent box with colored rounded corners in jetpack compose
I want to create a Box with Transparent background with rounded corners that is for example Red (In jetpack compose android kotlin).
I can put two Box on each other that below one is Green and top one in Red with rounded corners, but the issue is that if i want to Transparent the top one, we will see green, but i don’t want to green be shown, i want transparent
How to triegger LauncedEffect on user navigating to page OR value change
@Composable fun Greetings(){ var x by remember { mutableStateOf(false) } LaunchedEffect(key1 = true, key2 = x){ // Something } Display(switch = x) } In this case LaunchedEffect does not trigger when the user navigates to the page. It only works when x changes. I want it to trigger in both cases kotlin android-jetpack-compose