Skip to content

Commit

Permalink
Reverted converting to a flutter platform package as it caused proble…
Browse files Browse the repository at this point in the history
…ms and required extra complication.
  • Loading branch information
jonbhanson committed Apr 20, 2021
1 parent 6fd19fe commit c8bf110
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 26 deletions.
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
language: dart

install:
- git clone https://github.com/flutter/flutter.git -b stable
- ./flutter/bin/flutter doctor
- ./flutter/bin/flutter pub get

dart:
- dev
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
## [1.1.8+3] - (2021-Apr-20)
## [1.1.8+4] - (2021-Apr-20)

* Fixed bug that was preventing copying of dark background. Fixes [#163](https://github.com/jonbhanson/flutter_native_splash/issues/163).
* Updated pubspec.yaml to show which platforms are supported.

## [1.1.7+1] - (2021-Apr-02)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ First, add `flutter_native_splash` as a dev dependency in your pubspec.yaml file

```yaml
dev_dependencies:
flutter_native_splash: ^1.1.8+3
flutter_native_splash: ^1.1.8+4
```
Don't forget to `flutter pub get`.
Expand Down
3 changes: 1 addition & 2 deletions lib/flutter_native_splash.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
/// This is the main entry point for the Flutter Native Splash package.
library flutter_native_splash;

import 'dart:io';

import 'package:image/image.dart';
import 'package:meta/meta.dart';
import 'package:universal_io/io.dart';
import 'package:xml/xml.dart';
import 'package:yaml/yaml.dart';

Expand Down
18 changes: 2 additions & 16 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,33 +1,19 @@
name: flutter_native_splash
description: Generates native code to customize Flutter's default white native splash screen with background color and splash image. Supports dark mode, full screen, and more.
version: 1.1.8+3
version: 1.1.8+4
homepage: https://github.com/jonbhanson/flutter_native_splash

flutter:
plugin:
platforms:
android:
package: net.jonhanson.flutter_native_splash
pluginClass: FlutterNativeSplash
ios:
pluginClass: FlutterNativeSplash
web:
pluginClass: FlutterNativeSplash
fileName: web.dart

environment:
sdk: '>=2.12.0 <3.0.0'
flutter: ">=1.20.0"

dependencies:
image: ^3.0.2
meta: ^1.3.0
path: ^1.8.0
xml: ^5.1.0
yaml: ^3.1.0
universal_io: ^2.0.4

dev_dependencies:
pedantic: ^1.11.0
flutter_test:
sdk: flutter
test: any

0 comments on commit c8bf110

Please sign in to comment.