Sidebar menu and settings page skeleton

This commit is contained in:
Konstantin Kollar
2022-08-31 15:28:24 +02:00
parent cdfdad3433
commit b20e7cfb46
2 changed files with 1 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")),
);
}
}