This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree 6 files changed +11
-10
lines changed 6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1
- ## 0.5.0-nullsafety
1
+ ## 0.5.0
2
2
3
3
* Migrate to null safety.
4
4
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
+ // @dart = 2.9
5
6
import 'package:flutter_test/flutter_test.dart' ;
6
7
import 'package:integration_test/integration_test.dart' ;
7
8
import 'package:quick_actions/quick_actions.dart' ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class MyApp extends StatelessWidget {
25
25
}
26
26
27
27
class MyHomePage extends StatefulWidget {
28
- MyHomePage ({Key key}) : super (key: key);
28
+ MyHomePage ({Key ? key}) : super (key: key);
29
29
30
30
@override
31
31
_MyHomePageState createState () => _MyHomePageState ();
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ dev_dependencies:
17
17
sdk : flutter
18
18
integration_test :
19
19
path : ../../integration_test
20
- pedantic : ^1.8 .0
20
+ pedantic : ^1.10 .0
21
21
22
22
flutter :
23
23
uses-material-design : true
24
24
25
25
environment :
26
- sdk : " >=2.0 .0-dev.28.0 <3.0.0"
26
+ sdk : " >=2.12 .0-259.9.beta <3.0.0"
27
27
flutter : " >=1.9.1+hotfix.2"
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
+ // @dart = 2.9
5
6
import 'dart:async' ;
6
7
import 'dart:convert' ;
7
8
import 'dart:io' ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: quick_actions
2
2
description : Flutter plugin for creating shortcuts on home screen, also known as
3
3
Quick Actions on iOS and App Shortcuts on Android.
4
4
homepage : https://github.com/flutter/plugins/tree/master/packages/quick_actions
5
- version : 0.5.0-nullsafety
5
+ version : 0.5.0
6
6
7
7
flutter :
8
8
plugin :
@@ -16,17 +16,16 @@ flutter:
16
16
dependencies :
17
17
flutter :
18
18
sdk : flutter
19
- meta : ^1.3.0-nullsafety
19
+ meta : ^1.3.0
20
20
21
21
dev_dependencies :
22
- test : ^1.16.0-nullsafety
23
- mockito : ^5.0.0-nullsafety.0
22
+ test : ^1.16.3
24
23
flutter_test :
25
24
sdk : flutter
26
25
integration_test :
27
26
path : ../integration_test
28
- pedantic : ^1.10.0-nullsafety
27
+ pedantic : ^1.10.0
29
28
30
29
environment :
31
- sdk : " >=2.12.0-0 <3.0.0"
30
+ sdk : " >=2.12.0-259.9.beta <3.0.0"
32
31
flutter : " >=1.12.13+hotfix.5"
You can’t perform that action at this time.
0 commit comments