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

View File

@@ -5,6 +5,8 @@ class About extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const Placeholder();
return const Center(
child: Text("About Page"),
);
}
}

View File

@@ -5,6 +5,8 @@ class Links extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const Placeholder();
return const Center(
child: Text("Links Page"),
);
}
}

View File

@@ -5,6 +5,8 @@ class Listen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const Placeholder();
return const Center(
child: Text("Listen Page"),
);
}
}