Skip to content

Commit

Permalink
🎉 updated to version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aagarwal1012 committed Sep 19, 2018
1 parent 07a6f26 commit d75e2e8
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.1.0
**Feature Enhancement**
* Added onTap callback for all AnimatedText widget.
* Updated Readme.

## 1.0.3
* General update.

Expand Down
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Add this to your package's `pubspec.yaml` file:

```yaml
dependencies:
animated_text_kit: ^1.0.3
animated_text_kit: ^1.1.0
```

### 2. Install it
Expand Down Expand Up @@ -96,6 +96,9 @@ Row(
),
SizedBox(width: 20.0, height: 100.0),
RotateAnimatedTextKit(
onTap: () {
print("Tap Event");
},
text: ["AWESOME", "OPTIMISTIC", "DIFFERENT"],
textStyle: TextStyle(fontSize: 40.0, fontFamily: "Horizon"),
),
Expand All @@ -112,6 +115,9 @@ Row(
SizedBox(
width: 250.0,
child: FadeAnimatedTextKit(
onTap: () {
print("Tap Event");
},
text: [
"do IT!",
"do it RIGHT!!",
Expand All @@ -133,6 +139,9 @@ SizedBox(
SizedBox(
width: 250.0,
child: TyperAnimatedTextKit(
onTap: () {
print("Tap Event");
},
text: [
"It is not enough to do your best,",
"you must know what to do,",
Expand All @@ -154,6 +163,9 @@ SizedBox(
SizedBox(
width: 250.0,
child: TypewriterAnimatedTextKit(
onTap: () {
print("Tap Event");
},
text: [
"Discipline is the best tool",
"Design first, then code",
Expand All @@ -176,6 +188,9 @@ SizedBox(
SizedBox(
width: 250.0,
child: ScaleAnimatedTextKit(
onTap: () {
print("Tap Event");
},
text: [
"Think",
"Build",
Expand All @@ -197,6 +212,9 @@ SizedBox(
SizedBox(
width: 250.0,
child: ColorizeAnimatedTextKit(
onTap: () {
print("Tap Event");
},
text: [
"Larry Page",
"Bill Gates",
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.3"
version: "1.1.0"
args:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: animated_text_kit
description: A flutter package project which contains a collection of cool and beautiful text animations.
version: 1.0.3
version: 1.1.0
author: Ayush Agarwal <[email protected]>
homepage: https://github.com/aagarwal1012/Animated-Text-Kit/

Expand Down

0 comments on commit d75e2e8

Please sign in to comment.