v0.3.0
custom_rounded_rectangle_border
カスタムシェイプのボーダーを描画するためのシンプルなパッケージで、側面のレンダリング方法を完全に制御できます。
23いいね 320030日間ダウンロード150Pub ポイント
AndroidiOSWebmacOSWindowsLinux
lekanbar/custom_rounded_rectangle_border open-source repository details.
{"sdk":"flutter"}{"sdk":"flutter"}以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
A simple package for drawing custom shape borders with full control on how you want the sides to be rendered.
It simply addresses an open Flutter issue where an error is thrown when you try to set a borderRadius and border at the same time, see open issue below: Support non-uniform Borders with a non-zero borderRadius
Container(
decoration: ShapeDecoration(
shape: CustomRoundedRectangleBorder(
borderRadius: BorderRadius.only(
bottomLeft: 5.0,
bottomRight: 5.0),
leftSide: BorderSide(
color: Colors.black),
bottomLeftCornerSide: BorderSide(
color: Colors.black),
rightSide: BorderSide(
color: Colors.black),
bottomRightCornerSide: BorderSide(
color: Colors.black),
bottomSide: BorderSide(
color: Colors.black),
),
),)
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.