Settings Screen + Button in home

This commit is contained in:
2023-12-30 14:18:39 +02:00
parent 893ebc1ed2
commit 9ab300b6b8
3 changed files with 30 additions and 0 deletions

14
lib/app_settings.dart Normal file
View File

@@ -0,0 +1,14 @@
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 Screen"),
),
);
}
}