Sidebar menu and settings page skeleton

This commit is contained in:
Konstantin Kollar
2022-08-31 15:27:43 +02:00
parent 7c4320f4b6
commit cdfdad3433
3 changed files with 48 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class Settings extends StatelessWidget {
const Settings({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Settings'),
),
body: const Center(child: Text("Settings here")),
);
}
}