Files
flutter-go/lib/views/FourthPage.dart
jianping.xwh 94bd8510c0 merge devlop
2019-01-08 19:18:12 +08:00

23 lines
388 B
Dart

import 'dart:async';
import 'package:flutter/material.dart';
import '../components/CompList.dart';
class FourthPage extends StatefulWidget {
@override
FourthPageState createState() => new FourthPageState();
}
class FourthPageState extends State<FourthPage> {
@override
Widget build(BuildContext context) {
return new Container(
child: new CompList()
);
}
}