
Jetpack Compose: nested LazyColumn / LazyRow - Stack Overflow
May 17, 2022 · You can implement a nested LazyColumn in Jetpack Compose using fillParentMaxSize () to manage the size of the inner LazyColumn, similarly for a LazyRow. …
What do the @Stable and @Immutable annotations mean in …
Jul 29, 2021 · While studying through the Jetpack Compose sample project, I saw @Stable and @Immutable annotations. I've been looking through the Android documentation and GitHub …
Android Jetpack compose IconButton padding - Stack Overflow
Oct 6, 2020 · Android Jetpack compose IconButton padding Asked 5 years, 3 months ago Modified 2 years, 8 months ago Viewed 44k times
What is `it` in Textfield's onValueChange using Kotlin's Jetpack …
Nov 9, 2022 · I don't know what is it in Textfield's onValueChange using Jetpack compose. val usernameState = rememberSaveable { mutableStateOf(TextFieldValue())} TextField( value = …
How can I add Margin in Jetpack Compose? - Stack Overflow
Jul 16, 2020 · How exactly can you add Margin in Jetpack Compose? I can see that there is a Modifier for padding with Modifier.padding(...), but I can't seem to find one for margins. Or am I …
android - Jetpack Compose: Launch ActivityResultContract request …
Nov 6, 2020 · One could get around this by creating custom ActivityResultContract, which, at launch, take a callback. However, this would mean that virtually none of the built-in …
Content padding parameter it is not used - Stack Overflow
May 2, 2022 · But with this code as-is, the whole code within content = {...} is being underlined in red saying Jetpack Compose: Content padding parameter it is not used. I already read in this …
How to add an image to a button in jetpack compose/kotlin
Nov 3, 2023 · In Jetpack Compose, you can add an image to a button by using the icon parameter in the Button composable. The icon parameter allows you to specify an …
Remember LazyColumn Scroll Position - Jetpack Compose
Aug 1, 2021 · I'm trying to save/remember LazyColumn scroll position when I navigate away from one composable screen to another. Even if I pass a rememberLazyListState to a LazyColumn …
Android: Jetpack compose: How to create a button with an Icon in it?
Nov 26, 2022 · This question is more about why Jetpack compose is so unintuitive. I am trying to better understand this library. With the below composable fun RoundedButton(modifier: …