Skip to content

Commit 4051b97

Browse files
committed
format code
1 parent 525cf4e commit 4051b97

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

example/lib/main.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,10 @@ class EnterPage extends StatelessWidget {
173173
],
174174
),
175175
Text(
176-
"Other",
176+
'Other',
177177
style: TextStyle(fontWeight: FontWeight.w500, fontSize: 20),
178178
),
179-
Divider(),
179+
const Divider(),
180180
Row(
181181
children: <Widget>[
182182
Expanded(
@@ -189,7 +189,7 @@ class EnterPage extends StatelessWidget {
189189
MaterialPageRoute(
190190
builder: (_) => AttachedToast()));
191191
},
192-
child: Text("AttachedToast"),
192+
child: Text('AttachedToast'),
193193
),
194194
),
195195
),

example/web/index.html

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta charset="UTF-8">
5-
<title>example</title>
4+
<meta charset="UTF-8">
5+
<title>example</title>
66
</head>
77
<body>
8-
<script src="main.dart.js" type="application/javascript"></script>
9-
8+
<script src="main.dart.js" type="application/javascript"></script>
109
</body>
1110
</html>

0 commit comments

Comments
 (0)