Adds some various php files

This commit is contained in:
zontreck 2024-05-15 04:17:50 -07:00
parent e73edafc99
commit f04ad028ae
9 changed files with 112 additions and 0 deletions

23
lib/Settings.dart Normal file
View file

@ -0,0 +1,23 @@
import 'package:libac_flutter/nbt/impl/CompoundTag.dart';
class Settings {
static Settings? _inst = null;
Settings._() {}
factory Settings() {
if (Settings._inst != null)
return Settings._inst!;
else {
Settings._inst = Settings._();
return Settings._inst!;
}
}
static void Load(CompoundTag tag) {}
static CompoundTag save() {
CompoundTag tag = CompoundTag();
return tag;
}
}

View file

@ -16,6 +16,14 @@ class OpenSimPageState extends State<OpenSimPage> {
backgroundColor: Constants.TITLEBAR_COLOR,
title: Text("Zontreck.com - OpenSim Manager"),
),
body: Padding(
padding: EdgeInsets.all(8),
child: SingleChildScrollView(
child: Column(
children: [],
),
),
),
);
}
}