Create value editor prompt

This commit is contained in:
zontreck 2024-07-21 06:05:32 -07:00
parent d5577bb39a
commit 10e9189e31
17 changed files with 143 additions and 42 deletions

View file

@ -1,6 +1,7 @@
import 'package:flutter/material.dart';
import 'package:nbteditor/Editor.dart';
import 'package:nbteditor/pages/AddPage.dart';
import 'package:nbteditor/pages/EditValue.dart';
import 'package:nbteditor/pages/SNBTEditor.dart';
void main() {
@ -17,7 +18,7 @@ class MainApp extends StatelessWidget {
routes: {
"/": (context) => const Editor(),
"/add": (context) => const AddPage(),
"/snbt": (context) => const SnbtEdit()
"/snbt": (context) => const SnbtEdit(),
},
);
}