androidx.compose.ui.graphics.vector
Kotlin
|Java
Classes
AnimatedImageVector |
Animated vector graphics object that is generated as a result of androidx.compose.ui.res.loadAnimatedVectorResource. |
ImageVector |
Vector graphics object that is generated as a result of ImageVector.Builder It can be composed and rendered by passing it as an argument to rememberVectorPainter |
PathBuilder | |
PathNode |
Class representing a singular path command in a vector. |
PathParser | |
VectorApplier | |
VectorGroup |
Defines a group of paths or subgroups, plus transformation information. |
VectorNode | |
VectorPainter |
Painter implementation that abstracts the drawing of a Vector graphic. |
VectorPath |
Leaf node of a Vector graphics tree. |
VNode |
Top-level constants summary
const String | |
const String | |
const Float | |
const Float | |
const Float | |
const Float | |
const Float | |
const Float | |
const Float | |
const Float | |
const Float | |
const Float | |
const Float | |
const Float | |
const String |
Default identifier for the root group if a Vector graphic |
Top-level functions summary
Unit |
Group(name: String = DefaultGroupName, rotation: Float = DefaultRotation, pivotX: Float = DefaultPivotX, pivotY: Float = DefaultPivotY, scaleX: Float = DefaultScaleX, scaleY: Float = DefaultScaleY, translationX: Float = DefaultTranslationX, translationY: Float = DefaultTranslationY, clipPathData: List<PathNode> = EmptyPath, content: () -> Unit) |
Unit |
Path(pathData: List<PathNode>, pathFillType: PathFillType = DefaultFillType, name: String = DefaultPathName, fill: Brush? = null, fillAlpha: Float = 1.0f, stroke: Brush? = null, strokeAlpha: Float = 1.0f, strokeLineWidth: Float = DefaultStrokeLineWidth, strokeLineCap: StrokeCap = DefaultStrokeLineCap, strokeLineJoin |