项目作者: ajilo297

项目描述 :
A Flutter package to easily add dashed borders around widgets
高级语言: Dart
项目地址: git://github.com/ajilo297/Flutter-Dotted-Border.git
创建时间: 2019-05-20T16:31:14Z
项目社区:https://github.com/ajilo297/Flutter-Dotted-Border

开源协议:MIT License

下载


Dotted Border

pub package

A flutter package to easily add dotted borders around widgets.

Installing

To use this package, add dotted_border as a dependency in your pubspec.yaml file.

Usage

Wrap DottedBorder widget around the child widget

  1. DottedBorder(
  2. color: Colors.black,
  3. strokeWidth: 1,
  4. child: FlutterLogo(size: 148),
  5. )

BorderTypes

This package supports the following border types at the moment

  • RectBorder
  • RRectBorder
  • CircleBorder
  • OvalBorder

Example

  1. return DottedBorder(
  2. borderType: BorderType.RRect,
  3. radius: Radius.circular(12),
  4. padding: EdgeInsets.all(6),
  5. child: ClipRRect(
  6. borderRadius: BorderRadius.all(Radius.circular(12)),
  7. child: Container(
  8. height: 200,
  9. width: 120,
  10. color: Colors.amber,
  11. ),
  12. ),
  13. );

Dash Pattern

Now you can also specify the Dash Sequence by passing in an Array of Doubles

Example

  1. DottedBorder(
  2. dashPattern: [6, 3, 2, 3],
  3. child: ...
  4. );

The above code block will render a dashed border with the following pattern:

  • 6 pixel wide dash
  • 3 pixel wide space
  • 2 pixel wide dash
  • 3 pixel wide space

Custom Path Border

You can also specify any path as the customPath property when initializing the DottedBorderWidget, and it will draw it for you using the provided dash pattern.

Example

  1. Path customPath = Path()
  2. ..moveTo(20, 20)
  3. ..lineTo(50, 100)
  4. ..lineTo(20, 200)
  5. ..lineTo(100, 100)
  6. ..lineTo(20, 20);
  7. return DottedBorder(
  8. customPath: (size) => customPath, // PathBuilder
  9. color: Colors.indigo,
  10. dashPattern: [8, 4],
  11. strokeWidth: 2,
  12. child: Container(
  13. height: 220,
  14. width: 120,
  15. color: Colors.green.withAlpha(20),
  16. ),
  17. );

Stroke Cap

PR submitted by Tarekk Mohamed Abdalla

You can set a StrokeCap to the border line endings. It can take three values

  • StrokeCap.Round
  • StrokeCap.Square
  • StrokeCap.Butt

Output

Flutter dotted border image

Credits