25 lines
616 B
Dart
25 lines
616 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class SettingsPage extends StatelessWidget {
|
||
|
const SettingsPage({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return const Center(
|
||
|
child: Column(
|
||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||
|
children: [
|
||
|
Icon(Icons.settings, size: 100, color: Colors.deepPurple),
|
||
|
SizedBox(height: 20),
|
||
|
Text(
|
||
|
'Settings',
|
||
|
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
|
||
|
),
|
||
|
SizedBox(height: 10),
|
||
|
Text('App settings'),
|
||
|
],
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|