ZontreckWebsite/lib/pages/OpenSim.dart
2024-05-15 03:38:29 -07:00

21 lines
500 B
Dart

import 'package:flutter/material.dart';
import 'package:zontreck/Constants.dart';
class OpenSimPage extends StatefulWidget {
OpenSimPage({super.key});
@override
OpenSimPageState createState() => OpenSimPageState();
}
class OpenSimPageState extends State<OpenSimPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Constants.TITLEBAR_COLOR,
title: Text("Zontreck.com - OpenSim Manager"),
),
);
}
}