2022-02-21 14:51:53 +08:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
/// 【我的】页
|
|
|
|
|
///
|
2023-03-29 14:48:42 +08:00
|
|
|
class Mine extends StatefulWidget {
|
2022-02-21 14:51:53 +08:00
|
|
|
const Mine({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
@override
|
2023-03-29 14:48:42 +08:00
|
|
|
State<Mine> createState() => _MineState();
|
|
|
|
|
}
|
2022-02-21 14:51:53 +08:00
|
|
|
|
2023-03-29 14:48:42 +08:00
|
|
|
class _MineState extends State<Mine> {
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return Container();
|
|
|
|
|
// return Container();
|
2022-02-21 14:51:53 +08:00
|
|
|
}
|
|
|
|
|
}
|