Skip to content

Commit 5210ede

Browse files
committed
updated version to 2.2.2
1 parent 408f3cd commit 5210ede

File tree

5 files changed

+82
-83
lines changed

5 files changed

+82
-83
lines changed

.idea/workspace.xml

Lines changed: 73 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.2.2
2+
* Added Widget testing.
3+
* Updated Readme.
4+
5+
16
## 2.2.1
27
* Added feature to override Text widget styles for skip and done button.
38
* Added doneButtonPersist to show done button throughout the session.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You should ensure that you add the `intro_views_flutter` as a dependency in your
2929

3030
```yaml
3131
dependencies:
32-
intro_views_flutter: "^2.1.1"
32+
intro_views_flutter: "^2.2.2"
3333
```
3434
3535
You can also reference the git repository directly if you want:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: intro_views_flutter
22
description: A Flutter package for simple material design app intro screens with some cool animations.
3-
version: 2.2.1
3+
version: 2.2.2
44
author: Ayush Agarwal <[email protected]>
55
homepage: https://github.com/aagarwal1012/IntroViews-Flutter
66

test/widget_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ void main() {
4242
// Verify that our counter has incremented.
4343
expect(find.text('SKIP'), findsNothing);
4444
expect(find.text('DONE'), findsOneWidget);
45-
45+
4646
// Tap the 'DONE' button and trigger a frame
4747
await tester.tap(find.text('DONE'));
4848
await tester.pumpAndSettle();
49-
49+
5050
// Verify that the home page opens.
5151
expect(find.text('DONE'), findsNothing);
5252
expect(find.text('This is the home page of the app'), findsOneWidget);

0 commit comments

Comments
 (0)