File tree 3 files changed +4
-6
lines changed
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,14 @@ void main() {
7
7
WidgetsFlutterBinding .ensureInitialized ();
8
8
runApp (App (
9
9
platformService: PlatformService (),
10
- ));
10
+ ), );
11
11
}
12
12
// coverage:ignore-end
13
13
14
14
/// Entry gateway to the application.
15
15
/// Defining the MaterialApp attributes and Responsive Framework breakpoints.
16
16
class App extends StatelessWidget {
17
- const App ({super .key, required this .platformService});
17
+ const App ({required this .platformService, super .key });
18
18
19
19
final PlatformService platformService;
20
20
Original file line number Diff line number Diff line change 1
- import 'dart:math' ;
2
1
3
2
import 'package:app/home_page.dart' ;
4
3
import 'package:flutter/cupertino.dart' ;
5
- import 'package:flutter/foundation.dart' ;
6
4
import 'package:flutter_quill/flutter_quill.dart' ;
7
5
import 'package:flutter_quill_extensions/flutter_quill_extensions.dart' ;
8
6
import 'package:responsive_framework/responsive_framework.dart' ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ void main() {
28
28
// Build our app and trigger a frame.
29
29
await tester.pumpWidget (App (
30
30
platformService: platformServiceMock,
31
- ));
31
+ ), );
32
32
await tester.pumpAndSettle ();
33
33
34
34
// Expect to find the normal page setup
@@ -51,7 +51,7 @@ void main() {
51
51
// Build our app and trigger a frame.
52
52
await tester.pumpWidget (App (
53
53
platformService: platformServiceMock,
54
- ));
54
+ ), );
55
55
await tester.pumpAndSettle ();
56
56
57
57
// Expect to find the normal page setup
You can’t perform that action at this time.
0 commit comments