Initial implementation

This commit is contained in:
zontreck 2023-12-25 16:51:24 -07:00
parent 3cb4c0d768
commit 6fdcbb05c4
45 changed files with 13962 additions and 6 deletions

View file

@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:nbteditor/Editor.dart';
void main() {
runApp(const MainApp());
@ -9,12 +10,12 @@ class MainApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello World!'),
),
),
return MaterialApp(
theme: ThemeData.dark(),
routes: {
"/": (context) => Editor(),
"/select_file": (context) => FileSelectionScreen()
},
);
}
}