Dashed Rect

This package allows you to draw dotted lines with Flutter. You can draw a beautiful dotted line.

Screenshots

06e67

Usage

Example

To use this package :

  dependencies:
    flutter:
      sdk: flutter
    dashed_rect: ^0.0.3

How to use

  Container(
  color: Colors.red,
  height: 600,
  width: 300,
  child: const DashedRect(
    color: Colors.grey,
    gap: 1,
    strokeWidth: 1,
  ),
),

GitHub

https://github.com/champ96k/Dashed-Rect