File tree 3 files changed +13
-43
lines changed
3 files changed +13
-43
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,6 @@ packages:
62
62
description: flutter
63
63
source: sdk
64
64
version: "0.0.0"
65
- flutter_localizations:
66
- dependency: "direct main"
67
- description: flutter
68
- source: sdk
69
- version: "0.0.0"
70
65
flutter_test:
71
66
dependency: "direct dev"
72
67
description: flutter
@@ -78,7 +73,7 @@ packages:
78
73
name: intl
79
74
url: "https://pub.dartlang.org"
80
75
source: hosted
81
- version: "0.17.0-nullsafety.2 "
76
+ version: "0.17.0"
82
77
matcher:
83
78
dependency: transitive
84
79
description:
@@ -136,19 +131,17 @@ packages:
136
131
syncfusion_flutter_core:
137
132
dependency: transitive
138
133
description:
139
- path: syncfusion_flutter_core
140
- ref: "release/19.1.0.1"
141
- resolved-ref: "9da3941292a1a2c2c7b704cec39e6e498149335f"
142
- url: "https://buildautomation:
[email protected] /essential-studio/flutter-core"
143
- source: git
144
- version: "18.3.40"
134
+ name: syncfusion_flutter_core
135
+ url: "https://pub.dartlang.org"
136
+ source: hosted
137
+ version: "19.1.55"
145
138
syncfusion_flutter_datepicker:
146
139
dependency: "direct main"
147
140
description:
148
- path: "E:\\Mar 23\\Latestreleasepickerbranch\\flutter_datepicker\\ syncfusion_flutter_datepicker"
149
- relative: false
150
- source: path
151
- version: "18.3.35 -beta"
141
+ name: syncfusion_flutter_datepicker
142
+ url: "https://pub.dartlang.org"
143
+ source: hosted
144
+ version: "19.1.55 -beta"
152
145
term_glyph:
153
146
dependency: transitive
154
147
description:
Original file line number Diff line number Diff line change @@ -15,20 +15,17 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
15
15
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
16
16
version : 1.0.0+1
17
17
environment :
18
- sdk : " >=2.12.0 <3.0.0"
18
+ sdk : ' >=2.12.0 <3.0.0'
19
19
dependencies :
20
20
flutter :
21
21
sdk : flutter
22
- syncfusion_flutter_datepicker : 19.1.54 -beta
22
+ syncfusion_flutter_datepicker : ^ 19.1.55 -beta
23
23
24
- intl : " >=0.15.0 <0. 17.0"
24
+ intl : ^0. 17.0
25
25
26
26
# The following adds the Cupertino Icons font to your application.
27
27
# Use with the CupertinoIcons class for iOS style icons.
28
- cupertino_icons : ^1.0.1
29
-
30
- dependency_overrides :
31
- intl : ^0.17.0-nullsafety.2
28
+ cupertino_icons : ^1.0.2
32
29
33
30
dev_dependencies :
34
31
flutter_test :
Original file line number Diff line number Diff line change 5
5
// gestures. You can also use WidgetTester to find child widgets in the widget
6
6
// tree, read text, and verify that the values of widget properties are correct.
7
7
8
- import 'package:flutter/material.dart' ;
9
- import 'package:flutter_test/flutter_test.dart' ;
10
-
11
- import 'package:minimum_appointmentduration/main.dart' ;
12
-
13
8
void main () {
14
- testWidgets ('Counter increments smoke test' , (WidgetTester tester) async {
15
- // Build our app and trigger a frame.
16
- await tester.pumpWidget (PickerViewRestriction ());
17
-
18
- // Verify that our counter starts at 0.
19
- expect (find.text ('0' ), findsOneWidget);
20
- expect (find.text ('1' ), findsNothing);
21
-
22
- // Tap the '+' icon and trigger a frame.
23
- await tester.tap (find.byIcon (Icons .add));
24
- await tester.pump ();
25
9
26
- // Verify that our counter has incremented.
27
- expect (find.text ('0' ), findsNothing);
28
- expect (find.text ('1' ), findsOneWidget);
29
- });
30
10
}
You can’t perform that action at this time.
0 commit comments