changed placeholders to text

This commit is contained in:
2024-09-04 19:42:08 -04:00
parent 328c291317
commit db079c4d4e
3 changed files with 9 additions and 3 deletions
+3 -1
View File
@@ -5,6 +5,8 @@ class About extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return const Placeholder(); return const Center(
child: Text("About Page"),
);
} }
} }
+3 -1
View File
@@ -5,6 +5,8 @@ class Links extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return const Placeholder(); return const Center(
child: Text("Links Page"),
);
} }
} }
+3 -1
View File
@@ -5,6 +5,8 @@ class Listen extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return const Placeholder(); return const Center(
child: Text("Listen Page"),
);
} }
} }