두들 0.4.2 출시
7658 단어 opensourcejavascriptwebdevkotlin
특징
val ring : Path = ring (center, innerRadius, outerRadius)
val section: Path = ringSection(center, innerRadius, outerRadius, startAngle, endAngle)
object: ProgressIndicator() {
init {
size = Size(200, 100)
progress = 0.25
behavior = PathProgressIndicatorBehavior(
pathMetrics, // injected
path = path("M10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80")!!,
foreground = LinearGradientPaint(Black, Blue, Origin, Point(width, 0.0)),
foregroundThickness = 5.0,
background = Lightgray.paint,
backgroundThickness = 5.0
)
}
}
BasicProgressBarBehavior 이제 선택적 배경 채우기, 구성 가능한 윤곽선 두께, 전경 및 배경 모서리 반경을 사용합니다
Stroke 은 이제
Color
대신 지원되는 모든 Paint 으로 채울 수 있으며 이제 대시 오프셋을 지원합니다.canvas.rect(rectangle = bounds.atOrigin.inset(10.0),
radius = 10.0,
stroke = Stroke(fill = LinearGradientPaint(Red, Green, Origin, Point(width, height)), thickness = 20.0))
아피스
버그 수정/개선
ProgressIndicator 이제 렌더링/적중 감지를 해당 동작에 위임합니다
문서
자세한 내용은 전체release notes를 참조하십시오.
Reference
이 문제에 관하여(두들 0.4.2 출시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/pusolito/doodle-0-4-2-released-30np텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)