File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 0.3.3
2+
3+ * Fix an issue where ` onTap ` event was not firing. [ (Issue #8 )] ( https://github.com/fluttercandies/flutter-interactive-chart/issues/8 )
4+
15## 0.3.2
26
37* Add ` initialVisibleCandleCount ` parameter for setting a default zoom level. [ (Issue #6 )] ( https://github.com/fluttercandies/flutter-interactive-chart/issues/6 )
Original file line number Diff line number Diff line change @@ -212,8 +212,7 @@ class _InteractiveChartState extends State<InteractiveChart> {
212212 }),
213213 onTapCancel: () => setState (() => _tapPosition = null ),
214214 onTapUp: (_) {
215- // Fire callback event (if onTap() is available)
216- // call _fireOnTapEvent() before assigning null on _tapPosition
215+ // Fire callback event and reset _tapPosition
217216 if (widget.onTap != null ) _fireOnTapEvent ();
218217 setState (() => _tapPosition = null );
219218 },
Original file line number Diff line number Diff line change 11name : interactive_chart
22description : A candlestick chart that supports hand gestures such as pinch-to-zoom and panning.
3- version : 0.3.2
3+ version : 0.3.3
44homepage : https://github.com/h65wang/flutter-interactive-chart
55
66environment :
You can’t perform that action at this time.
0 commit comments