25 lines
451 B
Dart
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"),
|
|
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|