A small library to draw dashed line in flutter :D
Just add flutter_dash
as a dependency in your pubspec.yaml file.
Here are some example:
import 'package:flutter_dash/flutter_dash.dart';
Dash()
Dash(
direction: Axis.horizontal,
length: 132,
dashLength: 12,
dashColor: Colors.red)
Param | Default | Desc |
---|---|---|
direction | Axis.horizontal | Direction of line |
length | 200 | Length of line |
dashLength | 6 | Length of dash |
dashThickness | 1 | Thickness of dash |
dashColor | Colors.black | Line color |
dashBorderRadius | 0 | Border of dash |
dashGap | 3 | Distance between 2 dash |