0 purchases
custom card package
Usage #
To show the circular loader in the app
class _LoaderContainerState extends State<Loader> {
@override
Widget build(BuildContext context) {
return const Center(
child: CircularProgressIndicator(
color: Colors.deepOrange,
backgroundColor: Colors.transparent,
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.