Files
BistroFrontend/lib/app.dart

19 lines
329 B
Dart
Raw Normal View History

import 'package:flutter/material.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) {
2023-03-29 14:48:42 +08:00
return Container();
}
}