
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 …
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 …
android - Update composable when list changes - Stack Overflow
Apr 25, 2021 · Update composable when list changes Asked 4 years, 8 months ago Modified 8 months ago Viewed 76k times
android - Error: "@Composable invocations can only happen from …
Error: "@Composable invocations can only happen from the context of a @Composable function" Asked 5 years, 4 months ago Modified 1 year ago Viewed 129k times
How to get Context in Jetpack Compose - Stack Overflow
42 ContextAmbient.current is deprecated as of alpha-09. AmbientContext.current is deprecated. I think as of alpha-11. LocalContext.current is how you get the context in a composable now.
How to modify composable passed as parameter - Stack Overflow
Mar 15, 2024 · How to modify composable passed as parameter Asked 1 year, 10 months ago Modified 1 year, 3 months ago Viewed 2k times
@composable invocations can only happen from the context of an ...
Apr 11, 2023 · @composable invocations can only happen from the context of an @composable function for Composable with LaunchedEffect and AndroidViewBinding Asked 2 years, 8 …
How can I add Margin in Jetpack Compose? - Stack Overflow
Jul 16, 2020 · 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 …
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?
android - How to call a Composable in a different module from ...
Sep 20, 2023 · I have a simple app with an android library module. I am learning how to call a composable across modules in jetpack compose. How do you do it? Here is the MainActivity …