32 lines
722 B
Dart
32 lines
722 B
Dart
import 'package:fluent_ui/fluent_ui.dart';
|
|
|
|
class SettingsPage extends StatelessWidget {
|
|
const SettingsPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ScaffoldPage.withPadding(
|
|
header: const PageHeader(
|
|
title: Text('设置'),
|
|
),
|
|
content: Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(
|
|
FluentIcons.settings,
|
|
size: 64,
|
|
),
|
|
const SizedBox(height: 20),
|
|
Text(
|
|
'设置',
|
|
style: TextStyle(
|
|
fontSize: 24,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |