29 lines
679 B
Dart
29 lines
679 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"),
|
|
),
|
|
body: Padding(
|
|
padding: EdgeInsets.all(8),
|
|
child: SingleChildScrollView(
|
|
child: Column(
|
|
children: [],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|