Constant Dark Theme

This commit is contained in:
2023-12-30 14:43:16 +02:00
parent 9ab300b6b8
commit fedc5df0c7
4 changed files with 95 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:witl/theme_manager.dart';
class Settings extends StatelessWidget {
const Settings({super.key});
@@ -7,8 +8,14 @@ class Settings extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Settings Screen"),
title: const Text("Settings"),
),
body: ListView(
children: [
],
)
);
}
}