About 50 results
Open links in new tab
  1. .net - What does Composable exactly mean? - Stack Overflow

    Dec 20, 2010 · I'm currently reading through EF4 Recipes, the book, by Larry Tenny and Zeeshan Hirani. I came across the word "Composable" a lot, during reading the book, & had a general …

  2. How does a Composable function work in Jetpack Compose?

    Aug 30, 2023 · For every non-inline composable function that returns Unit, the Compose compiler generates code that wraps the function’s body in a recompose scope. Recompose scopes are an …

  3. What does composability mean in context of functional programming?

    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 composable. T...

  4. android - Error: "@Composable invocations can only happen from the ...

    Error: "@Composable invocations can only happen from the context of a @Composable function" Asked 5 years, 5 months ago Modified 1 year, 1 month ago Viewed 129k times

  5. 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 …

  6. android - Update composable when list changes - Stack Overflow

    Apr 25, 2021 · Update composable when list changes Asked 4 years, 9 months ago Modified 9 months ago Viewed 76k times

  7. 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 from …

  8. Change layout direction of a Composable - Stack Overflow

    Change the layout direction of a composable by changing the LocalLayoutDirection compositionLocal. But I have no idea how to use it in a composable to take effect.

  9. What kinds of functions are considered as "composable"?

    Jul 16, 2015 · In this sense, programmers describe functions (as a whole) as "very composable", because functions can (and, in a purely functional language like Haskell, do) comprise the large and …

  10. Pinia store vs composable functions - Stack Overflow

    Jun 13, 2022 · I would like to figure out what are the advantages of using Pinia store instead of using just pure ts composable functions like const userName = ref('') export default function useUser() { const