第一次提交

This commit is contained in:
2026-03-09 23:56:08 +08:00
commit 4bb705a4a0
132 changed files with 4899 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
// 不清楚需求一律使用有状态组件
import 'package:flutter/material.dart';
class LoginPage extends StatefulWidget {
const LoginPage({super.key});
@override
State<LoginPage> createState() => _LoginPageState();
}
class _LoginPageState extends State<LoginPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Login"),
),
body: Center(
child: Text("This is the login page."),
),
);
}
}