HarbingerCDN/lib/HomePage.dart

24 lines
460 B
Dart
Raw Permalink Normal View History

2024-02-10 12:54:51 -07:00
import 'package:flutter/material.dart';
2024-02-11 13:59:26 -07:00
import 'package:playsync/Constants.dart';
2024-02-10 12:54:51 -07:00
class HomePage extends StatefulWidget {
HomePage({super.key});
@override
HomeState createState() {
return HomeState();
}
}
class HomeState extends State<HomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
2024-02-10 13:22:56 -07:00
appBar: AppBar(
title: Text("Vorpal"),
backgroundColor: Constants.TITLEBAR_COLOR,
),
2024-02-10 12:54:51 -07:00
);
}
}