mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-20 06:16:20 +08:00
39 lines
763 B
Dart
39 lines
763 B
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_rookie_book/components/List.dart';
|
|
import 'package:flutter_rookie_book/components/Pagination.dart';
|
|
|
|
import '../common/sql.dart';
|
|
import 'dart:async';
|
|
|
|
class FirstPage extends StatefulWidget {
|
|
@override
|
|
FirstPageState createState() => new FirstPageState();
|
|
}
|
|
|
|
class FirstPageState extends State<FirstPage> {
|
|
|
|
@override
|
|
void initState() {
|
|
// TODO: implement initState
|
|
super.initState();
|
|
}
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return new Column(
|
|
children: <Widget>[
|
|
new Container(
|
|
child: new Pagination(),
|
|
),
|
|
new Expanded(
|
|
child: new List(),
|
|
),
|
|
]
|
|
|
|
);
|
|
}
|
|
}
|
|
|
|
|