commit to branch navigationbar

This commit is contained in:
Leon Astner 2025-08-02 03:04:20 +02:00
parent e8cc39387f
commit 0749836d17
4 changed files with 124 additions and 61 deletions

View 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'),
],
),
);
}
}