v0.6.3figma_squircle
适用于 Flutter 的平滑圆角半径。
281喜欢 2.4万近 30 天下载140Pub 分数
AndroidiOSWebmacOSWindowsLinux
Figma 角落平滑的 Flutter 实现。
{"sdk":"flutter"}^2.0.1{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
image
Flutter implementation of Figma's corner smoothing.
The SmoothRectangleBorder can be provided to a regular ShapeDecoration with a custom SmoothBorderRadius.
Container(
height: 100,
width: 100,
decoration: ShapeDecoration(
color: Colors.red.withOpacity(0.75),
shape: SmoothRectangleBorder(
borderRadius: SmoothBorderRadius(
cornerRadius: 10,
cornerSmoothing: 0.5,
),
),
),
)
Each corner can have an independent smoothing and radius.
SmoothBorderRadius.only(
topLeft: SmoothRadius(
cornerRadius: 10,
cornerSmoothing: 1,
),
topRight: SmoothRadius(
cornerRadius: 20,
cornerSmoothing: 0.4,
),
bottomLeft: SmoothRadius(
cornerRadius: 5,
cornerSmoothing: 0.8,
),
bottomRight: SmoothRadius(
cornerRadius: 30,
cornerSmoothing: 0.6,
),
),
To clip any widget with a smooth rectangle, use the ClipSmoothRect.
ClipSmoothRect(
radius: SmoothBorderRadius(
cornerRadius: 10,
cornerSmoothing: 1,
),
child: Container(
color: Colors.red,
width: 100,
height: 100,
),
)