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 { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Constants.TITLEBAR_COLOR, title: Text("Zontreck.com - OpenSim Manager"), ), body: Padding( padding: EdgeInsets.all(8), child: SingleChildScrollView( child: Column( children: [], ), ), ), ); } }