I’m getting this lint > @Composable properties ...
# compose
a
I’m getting this lint
@Composable properties should be declared with the @Composable annotation on the getter, and not the property itself.
But it won’t let me do it. What’s the right way?
1
j
The right way to annotate a getter is
Copy code
@get:Composable
val arrowLeft: ImageVector
     get() = //....
💡 3
a
Thanks! That seemed to work
v
as of alpha09