Skip to content

Commit

Permalink
updated version to 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aagarwal1012 committed Jul 8, 2018
1 parent 408f3cd commit 5210ede
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 83 deletions.
152 changes: 73 additions & 79 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.2.2
* Added Widget testing.
* Updated Readme.


## 2.2.1
* Added feature to override Text widget styles for skip and done button.
* Added doneButtonPersist to show done button throughout the session.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ You should ensure that you add the `intro_views_flutter` as a dependency in your

```yaml
dependencies:
intro_views_flutter: "^2.1.1"
intro_views_flutter: "^2.2.2"
```
You can also reference the git repository directly if you want:
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: intro_views_flutter
description: A Flutter package for simple material design app intro screens with some cool animations.
version: 2.2.1
version: 2.2.2
author: Ayush Agarwal <[email protected]>
homepage: https://github.com/aagarwal1012/IntroViews-Flutter

Expand Down
4 changes: 2 additions & 2 deletions test/widget_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ void main() {
// Verify that our counter has incremented.
expect(find.text('SKIP'), findsNothing);
expect(find.text('DONE'), findsOneWidget);

// Tap the 'DONE' button and trigger a frame
await tester.tap(find.text('DONE'));
await tester.pumpAndSettle();

// Verify that the home page opens.
expect(find.text('DONE'), findsNothing);
expect(find.text('This is the home page of the app'), findsOneWidget);
Expand Down

0 comments on commit 5210ede

Please sign in to comment.