FLUTTER ECOSYSTEM

Rezgar01m/pie_chart_sz

Flutter डोनट पाई चार्ट

पाई चार्ट_सीज़ प्रोजेक्ट कवर
Stars
1
Forks
0
अंतिम पुश (UTC)
21 फ़र॰ 2025
प्रोजेक्ट स्थिति
सक्रिय
Rezgar01 GitHub avatar
GITHUB User

Rezgar01 ↗

java and c++ developer Gmail: rezgar.sasr@gmail.com

zrKurdistan/bukan
भाषाएँC++CMakeDartSwiftCHTMLKotlinObjective-C

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 3 आइटम
  • flutter{"sdk":"flutter"}
  • flutter_testडेवलपमेंट{"sdk":"flutter"}
  • flutter_lintsडेवलपमेंट^5.0.0

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

spaced Pie Chart / pie_chart_sz Cirrus CI - Base Branch Build Status GitHub stars GitHub last commit Open Source Love

This Flutter package provides a donut Chart Widget

Installation

In the dependencies: section of your pubspec.yaml, add the following line:

Version

dependencies:
  pie_chart_sz: <latest version>

Usage

Import this class
import 'package:pie_chart/pie_chart.dart';
this a simple example code to use this package
PieChart
List<Color>? colors = [
  Colors.purple,
  Colors.blue,
  Colors.orange,
  Colors.red,
  Colors.teal,
];

List<double>? values = [
  50,
  20,
  20,
  5,
  5,
];

PieChartSz(
colors: colors,
values: values,
gapSize: 0.2,
centerText: "center text",
centerTextStyle: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Colors.black,
),
valueSettings: Valuesettings(
showValues: false,
ValueTextStyle: TextStyle(
fontSize: 14,
fontWeight: FontWeight.bold,
color: Colors.black,
),
),
)

Features

show values with 'showValues'
Valuesettings(
showValues: true,
ValueTextStyle: TextStyle(
fontSize: 14,
fontWeight: FontWeight.bold,
color: Colors.black,
),
)
PieChart