21 lines
500 B
Dart
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"),
|
|
),
|
|
);
|
|
}
|
|
}
|