dashed_rect 0.0.4
dashed_rect: ^0.0.4 copied to clipboard
This package allows you to draw dotted lines with Flutter. You can draw a beautiful dotted line around any widget.
Dashed Rect #
This package allows you to draw dotted lines with Flutter. You can draw a beautiful dotted line.
Screenshots #
Usage #
To use this package :
- add the dependency to your pubspec.yaml file.
dependencies:
flutter:
sdk: flutter
dashed_rect: ^0.0.1
copied to clipboard
How to use #
Container(
color: Colors.red,
height: 600,
width: 300,
child: const DashedRect(
color: Colors.grey,
gap: 1,
strokeWidth: 1,
),
),
copied to clipboard