progress_bar_chart 0.0.10 copy "progress_bar_chart: ^0.0.10" to clipboard
progress_bar_chart: ^0.0.10 copied to clipboard

A package to display multipe values on a vertical chart using progess indicators and animation.

example/main.dart

import 'package:flutter/material.dart';

import 'package:progress_bar_chart/progress_bar_chart.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    const height = 30.0;
    final Map<Color, double> colors = {
      Colors.blue: 0.15,
      Colors.green: 0.4,
      Colors.red: 0.2,
      Colors.yellow: 0.1,
    };

    return MaterialApp(
      title: 'ProgressBarChart Example',
      home: ProgressBarChart(
        height: height,
        values: colors,
        borderRadius: 40,
      ),
    );
  }
}
10
likes
0
points
91
downloads

Publisher

unverified uploader

Weekly Downloads

A package to display multipe values on a vertical chart using progess indicators and animation.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_animate

More

Packages that depend on progress_bar_chart