Vitalis11
Vitalis11

Reputation: 129

Where do I find the samples referred to by Jetpack Compose source documentation?

The KDoc contains links as to some package and Kotlin file, but I can't see such packages and files actually

Documentation window screenshot

I looked through the Google Maven repository, expecting to find that I just haven't included some package in my build.gradle, but there were no such artifacts as well

Upvotes: 8

Views: 3383

Answers (1)

Phil Dukhov
Phil Dukhov

Reputation: 88417

You can find the samples by following package name in the AndroidX repository.

In this case androidx.compose.foundation.layout.samples.SpacerExample sample can be found here.

As to KDoc problem, it's a known bug

Upvotes: 5

Related Questions