Skip to content

Commit 5d1c5fd

Browse files
committed
chore: cleanup redundant imports and bump to 3.0.1
1 parent a6bb18e commit 5d1c5fd

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.0.1
2+
3+
* **Internal:** Removed redundant imports to improve pub.dev analysis score.
4+
15
## 3.0.0
26

37
* **Breaking Change:** **"Widget as Root" Architecture**. Removed the requirement for a mandatory root `CircleNode` wrapper. The widget now acts as the hierarchy's root.

lib/flutter_circle_pack_chart_legend.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import 'package:flutter/material.dart';
22
import 'flutter_circle_pack_chart.dart';
3-
import 'circle_pack_chart_scope.dart';
43

54
/// A widget that displays a vertical legend for the currently focused level of a circular treemap.
65
class FlutterCirclePackChartLegend extends StatelessWidget {

lib/flutter_circle_pack_chart_widget.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import 'dart:ui';
33
import 'package:flutter/material.dart';
44
import 'package:vector_math/vector_math_64.dart' hide Colors;
55
import 'flutter_circle_pack_chart.dart';
6-
import 'circle_pack_chart_scope.dart';
76

87
/// A widget that displays an animated circular treemap with camera-style drill-down.
98
///

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_circle_pack_chart
22
description: A powerful and interactive circle pack chart (circular treemap) library for Flutter.
3-
version: 3.0.0
3+
version: 3.0.1
44
homepage: https://fabiocarneiro.github.io/FlutterCirclePackChart/
55
repository: https://github.com/fabiocarneiro/FlutterCirclePackChart
66
issue_tracker: https://github.com/fabiocarneiro/FlutterCirclePackChart/issues

test/circle_packer_scaling_test.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import 'package:flutter_test/flutter_test.dart';
22
import 'package:flutter_circle_pack_chart/flutter_circle_pack_chart.dart';
3-
import 'dart:math';
43

54
void main() {
65
test('CirclePacker scales relative to total value, not absolute sqrt', () {

0 commit comments

Comments
 (0)