Files
ai_chat_assistant/example/lib/pages/setting.dart

29 lines
683 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
class SettingPage extends StatefulWidget {
const SettingPage({super.key});
@override
State<SettingPage> createState() => _SettingPageState();
}
class _SettingPageState extends State<SettingPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('设置'),
),
body: const Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('设置页面'),
SizedBox(height: 20),
Text('这里可以添加更多设置选项'),
],
),
),
);
}
}