Files
food_health_flutter/lib/pages/system/test_page.dart
2025-09-23 11:47:29 +08:00

27 lines
616 B
Dart

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,
),
),
),
);
}
}