percentages_with_animation 0.0.3 percentages_with_animation: ^0.0.3 copied to clipboard
This package provide you percentages custom widgets with animations such as linear, circular, circle and gradient circle percentages.
Features #
This package provide you percentages custom widgets with animations such as linear, circular, circle and gradient circle percentages.
Getting started #
Version Minimum Flutter SDK: 3.0.0
Tested Versioning:
Flutter SDK version: 3.22.1
Dart Version: 3.4.1
Usage #
Linear Percentage #
Parameters | Description |
---|---|
currentPercentage |
current percentage - start value (>= 0) |
maxPercentage |
maximum percentage (currentPercentage <= maxPercentage) |
backgroundHeight |
background height |
percentageHeight |
percentage height |
duration |
duration for the animation (duration == null or duration >= 0) |
backgroundDecoration |
decoration for background |
percentageDecoration |
decoration for percentage |
backgroundColor |
background color, default value: black26 |
percentageColor |
percentage color, default value: black |
leftRightText |
Enum value for the left and right text (min and max value) - accepted value leftOnly , rightOnly , both , none , default value: none |
leftTextStyle |
text style for left text |
rightTextStyle |
text style for right text |
leftTextRightPadding |
text left padding from the percentage, default value: 5 |
rightTextRightPadding |
text right padding from the percentage, default value: 5 |
Circular Percentage #
Parameters | Description |
---|---|
currentPercentage |
current percentage - start value (>= 0) |
maxPercentage |
maximum percentage (currentPercentage <= maxPercentage) |
size |
circular percentage size, default value: 100 |
duration |
duration for the animation (duration == null or duration >= 0) |
percentageStrokeWidth |
stroke width |
backgroundStrokeWidth |
background stroke width |
percentageColor |
percentage color, default value: black |
backgroundColor |
background color, default value: black26 |
textStyle |
text style for the center text |
Circle Percentage #
Parameters | Description |
---|---|
currentPercentage |
current percentage - start value (>= 0) |
maxPercentage |
maximum percentage (currentPercentage <= maxPercentage) |
size |
circular percentage size, default value: 100 |
duration |
duration for the animation (duration == null or duration >= 0) |
percentageStrokeWidth |
stroke width |
backgroundStrokeWidth |
background stroke width |
percentageColor |
percentage color, default value: black |
backgroundColor |
background color, default value: black26 |
textStyle |
text style for the center text |
Gradient Circle Percentage #
Parameters | Description |
---|---|
currentPercentage |
current percentage - start value (>= 0) |
maxPercentage |
maximum percentage (currentPercentage <= maxPercentage) |
size |
circular percentage size, default value: 100 |
duration |
duration for the animation (duration == null or duration >= 0) |
percentageStrokeWidth |
percentage stroke width |
backgroundStrokeWidth |
background stroke width |
bottomColor |
bottom color, default value: black |
topColor |
top color, default value: white |
backgroundColor |
background circle color, default value: white |
textStyle |
text style for the center text |
import 'package:flutter/material.dart';
import 'package:percentages_with_animation/percentages_with_animation.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Percentage With Animation Example',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key});
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
const SizedBox(
height: 55,
),
const Text(
"Linear Percentage",
style: TextStyle(color: Colors.black, fontSize: 21),
),
const SizedBox(
height: 15,
),
Padding(
padding: const EdgeInsets.only(right: 59.0, left: 59),
child: LinearPercentage(
currentPercentage: 70,
maxPercentage: 100,
backgroundHeight: 20,
percentageHeight: 20,
leftRightText: LeftRightText.both,
backgroundDecoration: BoxDecoration(
borderRadius: BorderRadius.circular(10),
color: Colors.black38,
),
percentageDecoration: BoxDecoration(
borderRadius: BorderRadius.circular(10),
color: Colors.black,
),
),
),
const SizedBox(
height: 35,
),
const Text(
"Circular Percentage",
style: TextStyle(color: Colors.black, fontSize: 21),
),
const SizedBox(
height: 15,
),
const CircularPercentage(
currentPercentage: 50,
maxPercentage: 100,
size: 150,
duration: 2000,
percentageStrokeWidth: 10,
percentageColor: Colors.blue,
backgroundColor: Colors.black,
backgroundStrokeWidth: 2,
textStyle: TextStyle(
color: Colors.red,
fontSize: 21,
),
),
const SizedBox(
height: 35,
),
const Text(
"Circle Percentage",
style: TextStyle(color: Colors.black, fontSize: 21),
),
const SizedBox(
height: 15,
),
const CirclePercentage(
currentPercentage: 70,
maxPercentage: 100,
size: 150,
duration: 2000,
strokeWidth: 10,
percentageColor: Colors.green,
backgroundStrokeWidth: 2,
textStyle: TextStyle(
color: Colors.red,
fontSize: 21,
),
),
const SizedBox(
height: 35,
),
const Text(
"Gradient Circle Percentage",
style: TextStyle(color: Colors.black, fontSize: 21),
),
const SizedBox(
height: 15,
),
const GradientCirclePercentage(
currentPercentage: 70,
maxPercentage: 100,
size: 150,
duration: 2000,
percentageStrokeWidth: 10,
bottomColor: Colors.green,
backgroundStrokeWidth: 2,
textStyle: TextStyle(
color: Colors.red,
fontSize: 21,
),
),
],
),
);
}
}
Additional information #
Thank you for using my package, any feedback is welcome. You can report any bug, ask a question on package GitHub repository. https://github.com/NicosNicolaou16/percentages_with_animation/issues