Skip to content

Commit

Permalink
Merge pull request #76 from imaNNeoFighT/feature/animation
Browse files Browse the repository at this point in the history
Feature/animation
  • Loading branch information
imaNNeo authored Oct 2, 2019
2 parents 671244c + 526cfdf commit 8477d88
Show file tree
Hide file tree
Showing 44 changed files with 1,518 additions and 629 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.3.0
* 💥 Added Animations 💥, [read about it](https://github.com/imaNNeoFighT/fl_chart/blob/feature/both-axis-titles/repo_files/documentations/handle_animations.md).

## 0.2.2
* fixed a typo on CHANGELOG
* reformatted dart files with `flutter format` command
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


[![pub package](https://img.shields.io/pub/v/fl_chart.svg)](https://pub.dartlang.org/packages/fl_chart)
[![APK](https://img.shields.io/badge/APK-Demo-brightgreen.svg)](https://github.com/imaNNeoFighT/fl_chart/raw/master/repo_files/fl_chart_samples_0.0.7.apk)
[![APK](https://img.shields.io/badge/APK-Demo-brightgreen.svg)](https://github.com/imaNNeoFighT/fl_chart/raw/master/repo_files/fl_chart_samples_0.3.0.apk)

![FL Chart Logo](https://github.com/imaNNeoFighT/fl_chart/raw/master/repo_files/images/landing_logo.jpg)

Expand Down Expand Up @@ -36,7 +36,7 @@ Thank you all!

```kotlin
dependencies:
fl_chart: ^0.2.2
fl_chart: ^0.3.0
```


Expand All @@ -50,6 +50,11 @@ flutter packages get
### 3 - Learn it like a charm
##### Read the docs from [here](repo_files/documentations/index.md)

##### - [Animations](repo_files/documentations/handle_animations.md)
|Sample1 |Sample2 |Sample3 |
|:------------:|:------------:|:-------------:|
| [![](https://github.com/imaNNeoFighT/fl_chart/raw/master/repo_files/images/line_chart/line_chart_sample_1_anim.gif)](https://github.com/imaNNeoFighT/fl_chart/blob/master/repo_files/documentations/line_chart.md#sample-1-source-code) | [![](https://github.com/imaNNeoFighT/fl_chart/raw/master/repo_files/images/line_chart/line_chart_sample_2_anim.gif)](https://github.com/imaNNeoFighT/fl_chart/blob/master/repo_files/documentations/bar_chart.md#sample-2-source-code) | [![](https://github.com/imaNNeoFighT/fl_chart/raw/master/repo_files/images/bar_chart/bar_chart_sample_1_anim.gif)](https://github.com/imaNNeoFighT/fl_chart/blob/master/repo_files/documentations/bar_chart.md#sample-1-source-code) |

### 4 - Follow the roadmap
##### you can follow the roadmap from [here](repo_files/documentations/roadmap.md), and (let me know your suggestions)

Expand Down
2 changes: 1 addition & 1 deletion example/lib/bar_chart/bar_chart_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class BarChartPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
color: Color(0xff232040),
color: const Color(0xff232040),
child: Center(
child: Padding(
padding: const EdgeInsets.all(28.0),
Expand Down
3 changes: 2 additions & 1 deletion example/lib/bar_chart/bar_chart_page2.dart
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import 'package:flutter/material.dart';

import 'samples/bar_chart_sample2.dart';

class BarChartPage2 extends StatelessWidget {

@override
Widget build(BuildContext context) {
return Container(
color: Color(0xff132240),
color: const Color(0xff132240),
child: Center(
child: Padding(
padding: const EdgeInsets.all(28.0),
Expand Down
Loading

0 comments on commit 8477d88

Please sign in to comment.