delayed_progress_indicator 1.0.1
delayed_progress_indicator: ^1.0.1 copied to clipboard
A simple progress indicator which will display an indicator after a delay.
A simple progress indicator which will display an indicator after a delay
Features #
- A progress indicator which displays after a delay (2s by default)
- Customize the loader widget
- Customize the delay
Usage #
import 'package:delayed_progress_indicator/delayed_progress_indicator.dart';
// by default
DelayedProgressIndicator();
// customize the delay
DelayedProgressIndicator(delay: Duration(seconds: 5));
// customize the loader widget
DelayedProgressIndicator(
loader: MyCustomIndicator(),
);