0 purchases
custom shape progress indicator
Custom shape progress indicator #
Usage #
import 'package:custom_shape_progress_indicator/custom_shape_progress_indicator.dart';
copied to clipboard
Rectangle progress indicator #
CustomShapeProgressIndicator(
progress: 0.7,
child: Container(
padding: const EdgeInsets.all(8),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10)),
child: const Text('This is a progress indicator'),
),
)
copied to clipboard
Infinity progress indicator #
CustomShapeProgressIndicator(
child: Container(
padding: const EdgeInsets.all(8),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10)),
child: const Text('Infinity progress indicator'),
),
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.