Files
flutter_init_template/lib/pages/home/home_page.dart
2026-03-10 13:36:40 +08:00

25 lines
451 B
Dart

import 'package:flutter/material.dart';
import '../../l10n/app_localizations.dart';
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(AppLocalizations.of(context)!.hello),
//使用Locale title
),
body: Column(
children: [
Text("ds22d43"),
],
),
);
}
}