Skip to content

Commit 6a69831

Browse files
committed
chore: Format.
1 parent d9ed922 commit 6a69831

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

lib/main.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ void main() {
77
WidgetsFlutterBinding.ensureInitialized();
88
runApp(App(
99
platformService: PlatformService(),
10-
));
10+
),);
1111
}
1212
// coverage:ignore-end
1313

1414
/// Entry gateway to the application.
1515
/// Defining the MaterialApp attributes and Responsive Framework breakpoints.
1616
class App extends StatelessWidget {
17-
const App({super.key, required this.platformService});
17+
const App({required this.platformService, super.key});
1818

1919
final PlatformService platformService;
2020

lib/web_embeds/web_embeds.dart

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import 'dart:math';
21

32
import 'package:app/home_page.dart';
43
import 'package:flutter/cupertino.dart';
5-
import 'package:flutter/foundation.dart';
64
import 'package:flutter_quill/flutter_quill.dart';
75
import 'package:flutter_quill_extensions/flutter_quill_extensions.dart';
86
import 'package:responsive_framework/responsive_framework.dart';

test/widget_test.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void main() {
2828
// Build our app and trigger a frame.
2929
await tester.pumpWidget(App(
3030
platformService: platformServiceMock,
31-
));
31+
),);
3232
await tester.pumpAndSettle();
3333

3434
// Expect to find the normal page setup
@@ -51,7 +51,7 @@ void main() {
5151
// Build our app and trigger a frame.
5252
await tester.pumpWidget(App(
5353
platformService: platformServiceMock,
54-
));
54+
),);
5555
await tester.pumpAndSettle();
5656

5757
// Expect to find the normal page setup

0 commit comments

Comments
 (0)