feat: 添加布局和路由组件

This commit is contained in:
2026-07-24 18:01:12 +08:00
parent 725f911a6f
commit 86a464b58f
6 changed files with 123 additions and 15 deletions

10
lib/views/HomePage.dart Normal file
View File

@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(body: Center(child: Text("Home")));
}
}