Theme changes & settings navigation

This commit is contained in:
2025-06-23 23:55:25 +02:00
committed by mathiskirchner
parent c78a3ed171
commit 348b812f9c
4 changed files with 33 additions and 12 deletions

View File

@@ -1,10 +1,13 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class SettingsView extends StatelessWidget {
const SettingsView({super.key});
@override
Widget build(BuildContext context) {
return const Center(child: Text('Settings View'));
return Scaffold(
appBar: AppBar(title: const Text('Einstellungen')),
body: const Center(child: Text('Settings View')),
);
}
}