Add header to Settings page.

This commit is contained in:
Hyperling 2025-03-27 15:14:10 -07:00
parent de4f8306d7
commit 3c52239efc

View File

@ -1,5 +1,9 @@
// Flutter
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
// Local
import '/widgets/cards.dart';
/// TODO: /// TODO:
/// - Export DB (JSON?) /// - Export DB (JSON?)
/// - Import DB (JSON?) /// - Import DB (JSON?)
@ -14,8 +18,13 @@ class SettingsPage extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Center( return Center(
child: Text( child: Column(
"No settings yet. :)", children: [
TitleCard(title: "Settings"),
Text(
"No settings yet. :)",
),
],
), ),
); );
} }