PaintingStyle
enum class PaintingStyle
kotlin.Any | ||
↳ | kotlin.Enum<androidx.compose.ui.graphics.PaintingStyle> | |
↳ | androidx.compose.ui.graphics.PaintingStyle |
Strategies for painting shapes and paths on a canvas.
See Paint.style.
Summary
Enum values | |
---|---|
Apply the Paint to the inside of the shape. |
|
Apply the Paint to the edge of the shape. |
Inherited extension functions | ||
---|---|---|
From androidx.core.util
|
Enum values
Fill
enum val Fill : PaintingStyle
Apply the Paint to the inside of the shape. For example, when applied to the Canvas.drawCircle call, this results in a disc of the given size being painted.
Stroke
enum val Stroke : PaintingStyle
Apply the Paint to the edge of the shape. For example, when applied to the Canvas.drawCircle call, this results is a hoop of the given size being painted. The line drawn on the edge will be the width given by the Paint.strokeWidth property.