v0.1.5progress_border
Ein BoxBorder wie Border, aber zeichnet einen Teil der Grenze entsprechend dem Fortschritt, unterstützt Kreis, Rechteck, Rechteck.
31Likes 310030-Tage-Downloads160Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Ein BoxBorder wie Border, aber zeichnet einen Teil der Grenze entsprechend dem Fortschritt, unterstützt Kreis, Rechteck, Rechteck
{"sdk":"flutter"}{"sdk":"flutter"}^2.0.0Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
A BoxBorder like Border but draw part of the border according to the progress, supported circle, rect, rectangle.
| ProgressBorder | |
|---|---|
| toast |
flutter pub add progress_border
Container(
width: 100,
height: 100,
decoration: BoxDecoration(
color: Colors.blue.withAlpha(100),
border: ProgressBorder.all(
color: Colors.blue,
width: 8,
progress: animationController.value,
),
),
);
More usage see /example folder.
To use this library in versions lower than Flutter 3.7, please specify the version number as 0.0.x.