Skip to content

Commit e49c01d

Browse files
authored
Merge pull request #26 from efoxTeam/dev-ken
style:增加pr格式
2 parents 2e91f0a + 050c4ae commit e49c01d

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed
Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1+
/**
2+
* Author: 林浩然
3+
* Link: https://github.com/DIVINER-only
4+
* Email: 1476589247@qq.com
5+
*/
16
import 'package:flutter/material.dart';
27
import 'package:efox_flutter/components/widgetComp.dart' as WidgetComp;
38
import 'demo.dart' as Demo;
49

510
class Index extends StatefulWidget {
611
static String title = 'ListView';
712
static String mdUrl = 'docs/widget/scrollview/listview/index.md';
8-
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/ListView-class.html';
13+
static String originCodeUrl =
14+
'https://docs.flutter.io/flutter/widgets/ListView-class.html';
915

1016
@override
1117
_IndexState createState() => new _IndexState();
@@ -15,12 +21,11 @@ class _IndexState extends State<Index> {
1521
@override
1622
Widget build(BuildContext context) {
1723
return WidgetComp.Index(
18-
title: Index.title,
19-
originCodeUrl: Index.originCodeUrl,
20-
mdUrl: Index.mdUrl,
21-
demoChild: [
22-
Demo.Index(),
23-
]
24-
);
24+
title: Index.title,
25+
originCodeUrl: Index.originCodeUrl,
26+
mdUrl: Index.mdUrl,
27+
demoChild: [
28+
Demo.Index(),
29+
]);
2530
}
2631
}

0 commit comments

Comments
 (0)