Files
BistroFrontend/lib/app.dart
2022-02-21 20:20:31 +08:00

26 lines
492 B
Dart

import 'package:flutter/material.dart';
import 'layout/layout_scaffold.dart';
///
/// 应用页
///
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(
title: const Text('满席'),
),
body: null,
);
}
}