Replace placeholder with a basic message for now.

This commit is contained in:
Hyperling 2025-03-21 12:04:48 -07:00
parent d604a59ad1
commit 247b88daa2

View File

@ -13,6 +13,10 @@ class SettingsPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Placeholder();
return Center(
child: Text(
"No settings yet. :)",
),
);
}
}