Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit bba5543

Browse files
author
Chris Yang
authored
quick action stable (#3618)
1 parent f081633 commit bba5543

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

packages/quick_actions/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.5.0-nullsafety
1+
## 0.5.0
22

33
* Migrate to null safety.
44

packages/quick_actions/example/integration_test/quick_actions_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// @dart = 2.9
56
import 'package:flutter_test/flutter_test.dart';
67
import 'package:integration_test/integration_test.dart';
78
import 'package:quick_actions/quick_actions.dart';

packages/quick_actions/example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class MyApp extends StatelessWidget {
2525
}
2626

2727
class MyHomePage extends StatefulWidget {
28-
MyHomePage({Key key}) : super(key: key);
28+
MyHomePage({Key? key}) : super(key: key);
2929

3030
@override
3131
_MyHomePageState createState() => _MyHomePageState();

packages/quick_actions/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ dev_dependencies:
1717
sdk: flutter
1818
integration_test:
1919
path: ../../integration_test
20-
pedantic: ^1.8.0
20+
pedantic: ^1.10.0
2121

2222
flutter:
2323
uses-material-design: true
2424

2525
environment:
26-
sdk: ">=2.0.0-dev.28.0 <3.0.0"
26+
sdk: ">=2.12.0-259.9.beta <3.0.0"
2727
flutter: ">=1.9.1+hotfix.2"

packages/quick_actions/example/test_driver/integration_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// @dart = 2.9
56
import 'dart:async';
67
import 'dart:convert';
78
import 'dart:io';

packages/quick_actions/pubspec.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: quick_actions
22
description: Flutter plugin for creating shortcuts on home screen, also known as
33
Quick Actions on iOS and App Shortcuts on Android.
44
homepage: https://github.com/flutter/plugins/tree/master/packages/quick_actions
5-
version: 0.5.0-nullsafety
5+
version: 0.5.0
66

77
flutter:
88
plugin:
@@ -16,17 +16,16 @@ flutter:
1616
dependencies:
1717
flutter:
1818
sdk: flutter
19-
meta: ^1.3.0-nullsafety
19+
meta: ^1.3.0
2020

2121
dev_dependencies:
22-
test: ^1.16.0-nullsafety
23-
mockito: ^5.0.0-nullsafety.0
22+
test: ^1.16.3
2423
flutter_test:
2524
sdk: flutter
2625
integration_test:
2726
path: ../integration_test
28-
pedantic: ^1.10.0-nullsafety
27+
pedantic: ^1.10.0
2928

3029
environment:
31-
sdk: ">=2.12.0-0 <3.0.0"
30+
sdk: ">=2.12.0-259.9.beta <3.0.0"
3231
flutter: ">=1.12.13+hotfix.5"

0 commit comments

Comments
 (0)