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.3
how to use
container(
color: colors.red,
height: 600,
width: 300,
child: const dashedrect(
color: colors.grey,
gap: 1,
strokewidth: 1,
),
),
Comments are closed.