Files
BistroFrontend/lib/app.dart
2023-03-20 15:53:03 +08:00

25 lines
463 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) {
return LayoutScaffold(
appBar: AppBar(
title: const Text('满席'),
),
body: null,
);
}
}