Skip to content

Commit 8418455

Browse files
committed
🎉 updated to version 2.6.0
1 parent fa52dcc commit 8418455

File tree

7 files changed

+20
-10
lines changed

7 files changed

+20
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.6.0
2+
* Fix problem padding top in title of pageViews.
3+
* Background property added that can be used to add full screen image to IntroViews.
4+
15
## 2.5.0
26
* Added Next Button to move to the next screen. Overriding doneButtonPersist.
37
* Added Back Button. Overrides showSkipButton starting from the second page.

README.md

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

5656
```yaml
5757
dependencies:
58-
intro_views_flutter: '^2.4.0'
58+
intro_views_flutter: '^2.6.0'
5959
```
6060
6161
You can also reference the git repository directly if you want:

example/lib/main.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ class App extends StatelessWidget {
6868
primarySwatch: Colors.blue,
6969
), //ThemeData
7070
home: Builder(
71-
builder: (context) =>
72-
IntroViewsFlutter(
71+
builder: (context) => IntroViewsFlutter(
7372
pages,
7473
onTapDoneButton: () {
7574
Navigator.push(

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ packages:
5252
path: ".."
5353
relative: true
5454
source: path
55-
version: "2.5.0"
55+
version: "2.6.0"
5656
matcher:
5757
dependency: transitive
5858
description:

lib/intro_views_flutter.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class IntroViewsFlutter extends StatefulWidget {
9191
///
9292
/// default to 300.0
9393
final double fullTransition;
94-
94+
9595
final Color background;
9696

9797
IntroViewsFlutter(

pubspec.lock

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ packages:
6060
url: "https://pub.dartlang.org"
6161
source: hosted
6262
version: "1.6.2"
63+
pedantic:
64+
dependency: transitive
65+
description:
66+
name: pedantic
67+
url: "https://pub.dartlang.org"
68+
source: hosted
69+
version: "1.4.0"
6370
quiver:
6471
dependency: transitive
6572
description:
@@ -78,7 +85,7 @@ packages:
7885
name: source_span
7986
url: "https://pub.dartlang.org"
8087
source: hosted
81-
version: "1.4.1"
88+
version: "1.5.4"
8289
stack_trace:
8390
dependency: transitive
8491
description:
@@ -106,14 +113,14 @@ packages:
106113
name: term_glyph
107114
url: "https://pub.dartlang.org"
108115
source: hosted
109-
version: "1.0.1"
116+
version: "1.1.0"
110117
test_api:
111118
dependency: transitive
112119
description:
113120
name: test_api
114121
url: "https://pub.dartlang.org"
115122
source: hosted
116-
version: "0.2.1"
123+
version: "0.2.2"
117124
typed_data:
118125
dependency: transitive
119126
description:
@@ -129,5 +136,5 @@ packages:
129136
source: hosted
130137
version: "2.0.8"
131138
sdks:
132-
dart: ">=2.0.0 <3.0.0"
139+
dart: ">=2.1.0 <3.0.0"
133140
flutter: ">=0.1.4 <2.0.0"

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.5.0
3+
version: 2.6.0
44
author: Ayush Agarwal <[email protected]>
55
homepage: https://github.com/aagarwal1012/IntroViews-Flutter
66

0 commit comments

Comments
 (0)