主页添加底栏

This commit is contained in:
2026-03-10 23:39:51 +08:00
parent 5ba923838b
commit 52beb51a54
27 changed files with 118 additions and 36 deletions

View File

@@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
class ProfileView extends StatefulWidget {
const ProfileView({super.key});
@override
State<ProfileView> createState() => _ProfileViewState();
}
class _ProfileViewState extends State<ProfileView> {
@override
Widget build(BuildContext context) {
return Center(
child: Text("Profile View"),
);
}
}