Skip to content

Commit 2abbce2

Browse files
author
yangshangzhi
committed
add listview
1 parent a56014c commit 2abbce2

File tree

5 files changed

+26
-208
lines changed

5 files changed

+26
-208
lines changed

docs/widget/scrollview/gridview/bd.md

Lines changed: 0 additions & 208 deletions
This file was deleted.

docs/widget/scrollview/listview/code.md

Whitespace-only changes.

docs/widget/scrollview/listview/index.md

Whitespace-only changes.

lib/widget/scrollview/listview/demo_

Whitespace-only changes.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
}

0 commit comments

Comments
 (0)