0 purchases
circluar progress gradient
TODO: Put a short description of the package here that helps potential users
know whether this package might be useful for them.
Features #
TODO: List what your package can do. Maybe include images, gifs, or videos.
Getting started #
TODO: List prerequisites and provide or point to information on how to
start using the package.
Example #
import 'package:circluar_progress_gradient/circluar_progress_gradient.dart';
import 'package:flutter/material.dart';
void main() => runApp(MaterialApp(
home: MyApp(),
));
class MyApp extends StatefulWidget {
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> with SingleTickerProviderStateMixin {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
CircleProgress(
progress: 30,
),
const SizedBox(
height: 30,
),
CircleProgress(
progress: 30,
fullProgress: true,
),
],
),
));
}
}
copied to clipboard
Usage #
TODO: User for circular image, you can add edit badge and handle click on badge as well as on image click
to
import 'package:circluar_progress_gradient/circluar_progress_gradient.dart';
CircleProgress(
progress: 30,
),
//Or
CircleProgress(
progress: 30,
fullProgress: true,
),
copied to clipboard
Additional information #
TODO: Tell users more about the package: where to find more information, how to
contribute to the package, how to file issues, what response they can expect
from the package authors, and more.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.