Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 573 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 573 Bytes

About

This package allows you to draw a horizontal or vertical dashed lines in any Flutter Platform.

example

Usage

Install and import the package:

import 'package:dotted_dashed_line/dotted_dashed_line.dart';

Basic Implementation: Vertical:

DashedLine(height: 100, width: 0, axis: Axis.vertical)

Horizontal:

DashedLine(height: 0, width: 100, axis: Axis.horizontal)

Example

The sample code can be found under the example package.