import 'package:flutter/material.dart'; import 'package:playsync/Constants.dart'; class HomePage extends StatefulWidget { HomePage({super.key}); @override HomeState createState() { return HomeState(); } } class HomeState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text("Vorpal"), backgroundColor: Constants.TITLEBAR_COLOR, ), ); } }