
What does composability mean in context of functional …
What do functional programmers mean when they say a certain thing is composable or not composable? Some of the statements of this sort that I've read are: Control structures are not …
What does this do: @Composable () () -> Unit? - Stack Overflow
Aug 30, 2023 · What does @Composable() (() -> Unit)? do? I see it defined as a parameter to OutlinedTextField in Jetpack Compose. I know @Composable() -> Unit means you pass a …
android - Error: "@Composable invocations can only happen from …
Error: "@Composable invocations can only happen from the context of a @Composable function" Asked 5 years, 2 months ago Modified 11 months ago Viewed 128k times
android - Update composable when list changes - Stack Overflow
Apr 25, 2021 · Update composable when list changes Asked 4 years, 7 months ago Modified 7 months ago Viewed 76k times
android - How to pass a value from a composable function to …
One of the fields is the dropdown menu (another composable) of the currencies. Once you select a currency and return to the main form the name of currency should somehow be passed back …
How to convert all content of a composable to Bitmap in Android …
Dec 3, 2023 · If you want to capture the composable independent of the screen size, wrap your composable in a custom layout with your desired width & height (ask chat GPT). Pass the …
android - How to get activity in compose - Stack Overflow
Nov 4, 2020 · Instead, setup your camera permissions in your activity, and pass down (via parameters) any information that is needed by your composable in order to render pixels.
How to set text size in Android Jetpack Compose Text
Aug 10, 2021 · XML code <TextView android:textSize="22sp" ... /> What is the corresponding Jetpack compose code?
How to modify composable passed as parameter - Stack Overflow
Mar 15, 2024 · How to modify composable passed as parameter Asked 1 year, 8 months ago Modified 1 year, 2 months ago Viewed 2k times
How can I add Margin in Jetpack Compose? - Stack Overflow
In the old XML content, you could have decided explicitly which one to use. However, the new compose way is different. How can Jetpack Compose treat paddings and margins? There is …