flutter_outline_chart 1.0.2 copy "flutter_outline_chart: ^1.0.2" to clipboard
flutter_outline_chart: ^1.0.2 copied to clipboard

A flutter pie chart outline package for creating highly customizable outlined pie chart in flutter app.

Flutter Outline Chart #

The flutter_outline_chart package is a powerful tool for creating stunning, customizable, and animated pie charts in Flutter. It supports features like segment gaps and right-to-left (RTL) language compatibility. With a wide range of customization options, it enables visually appealing and informative data visualizations.

Installation #

Add the following to your pubspec.yaml file:

dependencies:
  flutter_outline_chart: ^1.0.0

Then run:

flutter pub get

Usage #

Import it

import 'package:flutter_outline_chart/flutter_outline_chart.dart';

screenshot1

PieChartWidget(
    data: [
        PieData(
            percentage: 0.5,
            color: Colors.orange,
        ),
        PieData(
            percentage: 0.5,
            color: Colors.red,
        ),
    ],
    diameter: 32,
    strokeWidth: 4,
    gap: 1,
    child: Text(
        'Nov',
        style: const TextStyle(
            fontSize: 10,
        ),
    ),
);

Stay in touch #

3
likes
155
points
19
downloads

Publisher

verified publishersiamahnaf.com

Weekly Downloads

A flutter pie chart outline package for creating highly customizable outlined pie chart in flutter app.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_outline_chart