added settings page

This commit is contained in:
2026-01-22 14:42:07 +01:00
parent 3032e13dc9
commit 81f7b45619
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
class SettingsPage extends StatelessWidget {
static const routeName = '/settings';
const SettingsPage({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}