Use a consistent header on each page.

This commit is contained in:
2025-03-27 14:48:07 -07:00
parent 1966f72c93
commit d9f8536f26
4 changed files with 12 additions and 10 deletions

View File

@ -1,3 +1,4 @@
// Flutter
import 'package:flutter/material.dart';
class TitleCard extends StatelessWidget {
@ -15,7 +16,11 @@ class TitleCard extends StatelessWidget {
child: Center(
child: Text(
title,
style: TextStyle(fontSize: 20),
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
decoration: TextDecoration.underline,
),
),
),
);