Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Migrate to NNBD (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
creativecreatorormaybenot authored Jan 14, 2021
1 parent 920f677 commit aa8e344
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 69 deletions.
1 change: 1 addition & 0 deletions url_strategy/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
.packages
.pub-cache/
.pub/
pubspec.lock
build/

# Android related
Expand Down
4 changes: 4 additions & 0 deletions url_strategy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.0-nullsafety.0

* Migrated to NNBD.

## 0.1.1

* Updated README and names.
Expand Down
2 changes: 1 addition & 1 deletion url_strategy/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class MyApp extends StatelessWidget {
}

class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
MyHomePage({Key? key, required this.title}) : super(key: key);

// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
Expand Down
2 changes: 1 addition & 1 deletion url_strategy/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.0"
version: "0.1.1"
vector_math:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion url_strategy/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: 'none'
version: 1.0.0+1

environment:
sdk: ">=2.7.0 <3.0.0"
sdk: '>=2.12.0-0 <3.0.0'

dependencies:
flutter:
Expand Down
63 changes: 0 additions & 63 deletions url_strategy/pubspec.lock

This file was deleted.

6 changes: 3 additions & 3 deletions url_strategy/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: url_strategy
description: >-2
Flutter package that allows setting the web app URL strategy with a single line of code.
version: 0.1.1
version: 0.2.0-nullsafety.0
homepage: https://github.com/simpleclub/url_strategy/tree/main/url_strategy

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

dependencies:
flutter_web_plugins:
Expand Down

0 comments on commit aa8e344

Please sign in to comment.