mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-07-15 03:04:25 +08:00
23 lines
388 B
Dart
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()
|
|
);
|
|
}
|
|
}
|
|
|
|
|