2022-02-21 14:51:53 +08:00
|
|
|
import 'package:flutter/material.dart';
|
2022-02-21 18:50:14 +08:00
|
|
|
import 'layout/layout_scaffold.dart';
|
2022-02-21 14:51:53 +08:00
|
|
|
|
|
|
|
|
///
|
|
|
|
|
/// 应用页
|
|
|
|
|
///
|
|
|
|
|
class App extends StatefulWidget {
|
|
|
|
|
const App({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
State<StatefulWidget> createState() => _AppState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class _AppState extends State<App> {
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
// TODO: implement build
|
|
|
|
|
return LayoutScaffold(
|
|
|
|
|
appBar: AppBar(
|
2022-02-21 20:20:31 +08:00
|
|
|
title: const Text('满席'),
|
2022-02-21 14:51:53 +08:00
|
|
|
),
|
|
|
|
|
body: null,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|