From db079c4d4ef058d5451425951755421204ab3380 Mon Sep 17 00:00:00 2001 From: David Senk Date: Wed, 4 Sep 2024 19:42:08 -0400 Subject: [PATCH] changed placeholders to text --- lib/About.dart | 4 +++- lib/Links.dart | 4 +++- lib/Listen.dart | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/About.dart b/lib/About.dart index abbc5e4..b4aefad 100644 --- a/lib/About.dart +++ b/lib/About.dart @@ -5,6 +5,8 @@ class About extends StatelessWidget { @override Widget build(BuildContext context) { - return const Placeholder(); + return const Center( + child: Text("About Page"), + ); } } diff --git a/lib/Links.dart b/lib/Links.dart index b62ce95..a9f64b8 100644 --- a/lib/Links.dart +++ b/lib/Links.dart @@ -5,6 +5,8 @@ class Links extends StatelessWidget { @override Widget build(BuildContext context) { - return const Placeholder(); + return const Center( + child: Text("Links Page"), + ); } } diff --git a/lib/Listen.dart b/lib/Listen.dart index 976fab7..6c37a0f 100644 --- a/lib/Listen.dart +++ b/lib/Listen.dart @@ -5,6 +5,8 @@ class Listen extends StatelessWidget { @override Widget build(BuildContext context) { - return const Placeholder(); + return const Center( + child: Text("Listen Page"), + ); } }