第一次提交

This commit is contained in:
2026-03-09 23:56:08 +08:00
parent 9395dfd38b
commit aad3c251a5
131 changed files with 4853 additions and 1 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."),
),
);
}
}