Skip to content

Commit

Permalink
Thanks Yousef for PR #332 adding stricter lint rules and zuboje for PR
Browse files Browse the repository at this point in the history
…#334 adding deprecated message.
  • Loading branch information
jonbhanson committed Apr 10, 2022
1 parent cf8c8de commit f6b77fe
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## [2.1.5] - (2022-Apr-10)
* Thanks [Yousef](https://github.com/YDA93) for [PR #332](https://github.com/jonbhanson/flutter_native_splash/pull/332) adding stricter lint rules and [zuboje](https://github.com/zuboje) for [PR #334](https://github.com/jonbhanson/flutter_native_splash/pull/334) adding deprecated message.
## [2.1.3+1] - (2022-Apr-03)
* Updated documentation. Closes [#327](https://github.com/jonbhanson/flutter_native_splash/issues/327).
* `remove` correctly handles multiple plist files. Fixes [#247](https://github.com/jonbhanson/flutter_native_splash/issues/247).
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ When your app is opened, there is a brief time while the native app loads Flutte

You can now keep the splash screen up while your app initializes! No need for a secondary splash screen anymore. Just use the `preserve` and `remove` methods together to remove the splash screen after your initialization is complete. See [details below](https://pub.dev/packages/flutter_native_splash#3-set-up-app-initialization-optional).


Method `removeAfter` has been deprecated, `remove` method should be used insead.

# Usage

Would you prefer a video tutorial instead? Check out <a href="https://www.youtube.com/watch?v=dB0dOnc2k10">Johannes Milke's tutorial</a>.
Expand All @@ -20,7 +17,7 @@ First, add `flutter_native_splash` as a dependency in your pubspec.yaml file.

```yaml
dependencies:
flutter_native_splash: ^2.1.3+1
flutter_native_splash: ^2.1.5
```

Don't forget to `flutter pub get`.
Expand Down
1 change: 1 addition & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ include: package:lint/analysis_options.yaml
linter:
rules:
avoid_print: false
avoid_classes_with_only_static_members: false
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.1.4+1"
version: "2.1.5"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flutter_native_splash
description: Customize Flutter's default white native splash screen with
background color and splash image. Supports dark mode, full screen, and more.
version: 2.1.4+1
version: 2.1.5
homepage: https://github.com/jonbhanson/flutter_native_splash

environment:
Expand Down

0 comments on commit f6b77fe

Please sign in to comment.