Adds some various php files
This commit is contained in:
parent
e73edafc99
commit
f04ad028ae
9 changed files with 112 additions and 0 deletions
23
lib/Settings.dart
Normal file
23
lib/Settings.dart
Normal 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;
|
||||
}
|
||||
}
|
|
@ -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: [],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue