登录流程已全部重构

This commit is contained in:
zhutao
2025-09-23 11:47:29 +08:00
parent a4992a063b
commit 8988b3feea
71 changed files with 2036 additions and 901 deletions

View File

@@ -0,0 +1,26 @@
import 'package:flutter/material.dart';
import 'package:food_health/l10n/app_localizations.dart';
class TestPage extends StatefulWidget {
const TestPage({super.key});
@override
State<TestPage> createState() => _TestPageState();
}
class _TestPageState extends State<TestPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text(
AppLocalizations.of(context)?.login_title ?? "",
style: TextStyle(
fontSize: 50,
color: Theme.of(context).colorScheme.primary,
),
),
),
);
}
}