Skip to content

Commit

Permalink
- update deps
Browse files Browse the repository at this point in the history
- correct doc on Readme
  • Loading branch information
jaumard committed Feb 10, 2020
1 parent 6c32b2e commit 3ceb452
Show file tree
Hide file tree
Showing 5 changed files with 126 additions and 23 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [3.0.1]

- update deps
- correct doc on Readme

## [3.0.0]

- breaking change: next is now a widget builder to avoid instantiate the next screen directly
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The splash screen will show the animation and push the new route you gave once i
```dart
SplashScreen.navigate(
name: 'intro.flr',
next: MyHomePage(title: 'Flutter Demo Home Page'),
next: (_) => MyHomePage(title: 'Flutter Demo Home Page'),
until: () => Future.delayed(Duration(seconds: 5)),
startAnimation: '1',
),
Expand All @@ -39,7 +39,7 @@ SplashScreen.callback(

`name` : path/name of the flare animation

`next` : screen to show once animation is finished
`next` : screen to show once animation is finished as widget builder

`loopAnimation`: animation name to run, default same as first param

Expand Down
69 changes: 59 additions & 10 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
archive:
dependency: transitive
description:
name: archive
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.11"
args:
dependency: transitive
description:
name: args
url: "https://pub.dartlang.org"
source: hosted
version: "1.5.2"
async:
dependency: transitive
description:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.3.0"
version: "2.4.0"
boolean_selector:
dependency: transitive
description:
Expand All @@ -29,6 +43,20 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.14.11"
convert:
dependency: transitive
description:
name: convert
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.1"
crypto:
dependency: transitive
description:
name: crypto
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.3"
cupertino_icons:
dependency: "direct main"
description:
Expand All @@ -42,28 +70,28 @@ packages:
name: flare_dart
url: "https://pub.dartlang.org"
source: hosted
version: "2.2.2"
version: "2.3.3"
flare_flutter:
dependency: transitive
description:
name: flare_flutter
url: "https://pub.dartlang.org"
source: hosted
version: "1.6.2"
version: "2.0.1"
flare_loading:
dependency: transitive
description:
name: flare_loading
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0"
version: "2.1.1"
flare_splash_screen:
dependency: "direct main"
description:
path: ".."
relative: true
source: path
version: "2.1.4"
version: "3.0.0"
flutter:
dependency: "direct main"
description: flutter
Expand All @@ -74,20 +102,27 @@ packages:
description: flutter
source: sdk
version: "0.0.0"
image:
dependency: transitive
description:
name: image
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.4"
matcher:
dependency: transitive
description:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.5"
version: "0.12.6"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.7"
version: "1.1.8"
path:
dependency: transitive
description:
Expand All @@ -102,6 +137,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0+1"
petitparser:
dependency: transitive
description:
name: petitparser
url: "https://pub.dartlang.org"
source: hosted
version: "2.4.0"
quiver:
dependency: transitive
description:
Expand Down Expand Up @@ -155,7 +197,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.5"
version: "0.2.11"
typed_data:
dependency: transitive
description:
Expand All @@ -170,6 +212,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.8"
xml:
dependency: transitive
description:
name: xml
url: "https://pub.dartlang.org"
source: hosted
version: "3.5.0"
sdks:
dart: ">=2.2.2 <3.0.0"
flutter: ">=1.7.8+hotfix.3 <2.0.0"
dart: ">=2.4.0 <3.0.0"
flutter: ">=1.7.8 <2.0.0"
67 changes: 58 additions & 9 deletions pubspec.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
archive:
dependency: transitive
description:
name: archive
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.11"
args:
dependency: transitive
description:
name: args
url: "https://pub.dartlang.org"
source: hosted
version: "1.5.2"
async:
dependency: transitive
description:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.3.0"
version: "2.4.0"
boolean_selector:
dependency: transitive
description:
Expand All @@ -29,27 +43,41 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.14.11"
convert:
dependency: transitive
description:
name: convert
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.1"
crypto:
dependency: transitive
description:
name: crypto
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.3"
flare_dart:
dependency: transitive
description:
name: flare_dart
url: "https://pub.dartlang.org"
source: hosted
version: "2.2.2"
version: "2.3.3"
flare_flutter:
dependency: transitive
description:
name: flare_flutter
url: "https://pub.dartlang.org"
source: hosted
version: "1.6.2"
version: "2.0.1"
flare_loading:
dependency: "direct main"
description:
name: flare_loading
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0"
version: "2.1.1"
flutter:
dependency: "direct main"
description: flutter
Expand All @@ -60,20 +88,27 @@ packages:
description: flutter
source: sdk
version: "0.0.0"
image:
dependency: transitive
description:
name: image
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.4"
matcher:
dependency: transitive
description:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.5"
version: "0.12.6"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.7"
version: "1.1.8"
path:
dependency: transitive
description:
Expand All @@ -88,6 +123,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0+1"
petitparser:
dependency: transitive
description:
name: petitparser
url: "https://pub.dartlang.org"
source: hosted
version: "2.4.0"
quiver:
dependency: transitive
description:
Expand Down Expand Up @@ -141,7 +183,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.5"
version: "0.2.11"
typed_data:
dependency: transitive
description:
Expand All @@ -156,6 +198,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.8"
xml:
dependency: transitive
description:
name: xml
url: "https://pub.dartlang.org"
source: hosted
version: "3.5.0"
sdks:
dart: ">=2.2.2 <3.0.0"
flutter: ">=1.7.8+hotfix.3 <2.0.0"
dart: ">=2.4.0 <3.0.0"
flutter: ">=1.7.8 <2.0.0"
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flare_splash_screen
description: Facilitator for having a Splash screen with a Flare animation until some work has been done for the initialization of the app
version: 3.0.0
version: 3.0.1
author: jaumard <jimmy.aumard@gmail.com>
homepage: https://github.com/jaumard/flare_splash_screen

Expand All @@ -9,7 +9,7 @@ environment:
flutter: ">=1.7.8 <2.0.0"

dependencies:
flare_loading: ^2.1.0
flare_loading: ^2.1.1
#path: '../flare_loading'
flutter:
sdk: flutter
Expand Down

0 comments on commit 3ceb452

Please sign in to comment.