Skip to content

Commit

Permalink
Merge pull request #24 from aagarwal1012/develop
Browse files Browse the repository at this point in the history
Merge #19 and updated version
  • Loading branch information
aagarwal1012 committed Jan 30, 2019
2 parents a597e37 + c11643b commit 69ac9a8
Show file tree
Hide file tree
Showing 10 changed files with 72 additions and 252 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.3.0
**Feature Enhancement**
* Added attribute to align text.
* Updated Readme.

## 1.2.0
**Feature Enhancement**
* Added attribute to check whether the animation should repeat or not.
Expand Down
14 changes: 13 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.2.0
animated_text_kit: ^1.3.0
```

### 2. Install it
Expand Down Expand Up @@ -102,6 +102,8 @@ Row(
},
text: ["AWESOME", "OPTIMISTIC", "DIFFERENT"],
textStyle: TextStyle(fontSize: 40.0, fontFamily: "Horizon"),
textAlign: TextAlign.start,
alignment: AlignmentDirectional.topStart // or Alignment.topLeft
),
],
);
Expand All @@ -128,6 +130,8 @@ SizedBox(
fontSize: 32.0,
fontWeight: FontWeight.bold
),
textAlign: TextAlign.start,
alignment: AlignmentDirectional.topStart // or Alignment.topLeft
),
);
```
Expand All @@ -153,6 +157,8 @@ SizedBox(
fontSize: 30.0,
fontFamily: "Bobbers"
),
textAlign: TextAlign.start,
alignment: AlignmentDirectional.topStart // or Alignment.topLeft
),
);
```
Expand All @@ -177,6 +183,8 @@ SizedBox(
fontSize: 30.0,
fontFamily: "Agne"
),
textAlign: TextAlign.start,
alignment: AlignmentDirectional.topStart // or Alignment.topLeft
),
);
```
Expand All @@ -201,6 +209,8 @@ SizedBox(
fontSize: 70.0,
fontFamily: "Canterbury"
),
textAlign: TextAlign.start,
alignment: AlignmentDirectional.topStart // or Alignment.topLeft
),
);
```
Expand Down Expand Up @@ -231,6 +241,8 @@ SizedBox(
Colors.yellow,
Colors.red,
],
textAlign: TextAlign.start,
alignment: AlignmentDirectional.topStart // or Alignment.topLeft
),
);
```
Expand Down
Loading

0 comments on commit 69ac9a8

Please sign in to comment.