File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
lib/widget/scrollview/listview Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * Author: 林浩然
3+ * Link: https://github.com/DIVINER-only
4+ * Email: 1476589247@qq.com
5+ */
16import 'package:flutter/material.dart' ;
27import 'package:efox_flutter/components/widgetComp.dart' as WidgetComp;
38import 'demo.dart' as Demo;
49
510class 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}
You can’t perform that action at this time.
0 commit comments