Files
BistroFrontend/lib/mine.dart

21 lines
350 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'layout/layout_scaffold.dart';
///
/// 【我的】页
///
class Mine extends StatelessWidget {
const Mine({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return LayoutScaffold(
appBar: AppBar(
2022-02-21 20:20:31 +08:00
title: const Text('在下'),
),
);
}
}