54 lines
1.4 KiB
Dart
54 lines
1.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// 简化版主页面 - 用于测试应用启动
|
|
class SimpleHomeScreen extends StatelessWidget {
|
|
const SimpleHomeScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('AI英语学习平台'),
|
|
backgroundColor: Colors.blue,
|
|
foregroundColor: Colors.white,
|
|
),
|
|
body: const Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(
|
|
Icons.school,
|
|
size: 100,
|
|
color: Colors.blue,
|
|
),
|
|
SizedBox(height: 24),
|
|
Text(
|
|
'欢迎使用AI英语学习平台',
|
|
style: TextStyle(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
SizedBox(height: 16),
|
|
Text(
|
|
'智能化英语学习体验',
|
|
style: TextStyle(
|
|
fontSize: 16,
|
|
color: Colors.grey,
|
|
),
|
|
),
|
|
SizedBox(height: 32),
|
|
Text(
|
|
'应用启动成功!',
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: Colors.green,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |