Files
flutter-go/lib/views/fourth_page.dart
2019-01-12 18:09:40 +08:00

23 lines
369 B
Dart

import 'package:flutter/material.dart';
import '../components/comp_list.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()
);
}
}