Home > OS >  Where to find documentation that lists all available composables?
Where to find documentation that lists all available composables?

Time:09-22

I'm struggling to find a resource that has a list of all available composables you can use in your projects.

The developer site https://developer.android.com/jetpack/compose/documentation doesn't appear to have it and if I Google for one a bunch of articles come up on how to use lazyrow and lazycolumn.

Where would I go to find, let's say, the Card composable is available to use if I didn't already know it existed

CodePudding user response:

You can find the list of Jetpack Composables from these Docs.

  • Related