commit to branch navigationbar
This commit is contained in:
parent
e8cc39387f
commit
0749836d17
4 changed files with 124 additions and 61 deletions
24
CHALLENGE_2/sleepysound/lib/pages/settings_page.dart
Normal file
24
CHALLENGE_2/sleepysound/lib/pages/settings_page.dart
Normal file
|
@ -0,0 +1,24 @@
|
|||
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'),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue