Files
flutter-go/lib/views/FourthPage.dart
2019-01-11 15:19:16 +08:00

23 lines
368 B
Dart

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()
);
}
}