Adds in image icons
This commit is contained in:
parent
7836668d4c
commit
192f039421
21 changed files with 88 additions and 51 deletions
|
@ -3,6 +3,8 @@ import 'package:libac_dart/nbt/Tag.dart';
|
|||
import 'package:nbteditor/Constants.dart';
|
||||
|
||||
class AddPage extends StatefulWidget {
|
||||
const AddPage({super.key});
|
||||
|
||||
@override
|
||||
State<StatefulWidget> createState() => AddState();
|
||||
}
|
||||
|
@ -17,10 +19,10 @@ class AddState extends State<AddPage> {
|
|||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text("Add Tag"),
|
||||
title: const Text("Add Tag"),
|
||||
backgroundColor: Constants.TITLEBAR_COLOR,
|
||||
),
|
||||
body: Padding(
|
||||
body: const Padding(
|
||||
padding: EdgeInsets.all(8),
|
||||
child: SingleChildScrollView(
|
||||
child: Column(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue