What is the "remember" objects in the sample? #528
-
Beta Was this translation helpful? Give feedback.
Answered by
patrickmichalik
Jan 10, 2024
Replies: 1 comment
-
Hello! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
csbenz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello!
rememberCartesianChart
,rememberColumnCartesianLayer
, and so on are factory functions that use Jetpack Compose’sremember
.rememberCartesianChart
, for example, creates and remembers aCartesianChart
instance. This is in line with Google’s naming guidelines. You can find more information on Vico’s APIs in the API reference.