File tree Expand file tree Collapse file tree 5 files changed +26
-208
lines changed
lib/widget/scrollview/listview Expand file tree Collapse file tree 5 files changed +26
-208
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ import 'package:flutter/material.dart' ;
2+ import 'package:efox_flutter/components/widgetComp.dart' as WidgetComp;
3+
4+ class Index extends StatefulWidget {
5+ static String title = 'GridView' ;
6+ static String mdUrl = 'docs/widget/scrollview/gridview/index.md' ;
7+ static String codeUrl = 'docs/widget/scrollview/gridview/code.md' ;
8+ static String originCodeUrl = 'https://flutter.io/docs/cookbook/lists/grid-lists' ;
9+
10+ @override
11+ _IndexState createState () => new _IndexState ();
12+ }
13+
14+ class _IndexState extends State <Index > {
15+ @override
16+ Widget build (BuildContext context) {
17+ return WidgetComp .Index (
18+ title: Index .title,
19+ codeUrl: Index .codeUrl,
20+ originCodeUrl: Index .originCodeUrl,
21+ mdUrl: Index .mdUrl,
22+ demoChild: [
23+ ]
24+ );
25+ }
26+ }
You can’t perform that action at this time.
0 commit comments