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 { @override Widget build(BuildContext context) { return new Container( child: new CompList() ); } }