Hooks up rename prompt

This commit is contained in:
zontreck 2024-06-07 14:49:20 -07:00
parent 2bc99f6bd9
commit dc6dffc3ba
4 changed files with 121 additions and 3 deletions

View file

@ -34,5 +34,14 @@ class AddState extends State<AddPage> {
class AddElementArgs {
Tag tag;
AddElementArgs({required this.tag});
bool allowAllTagTypes;
bool isArray;
List<TagType> allowedTagTypes;
AddElementArgs(
{required this.tag,
required this.allowAllTagTypes,
required this.isArray,
this.allowedTagTypes = const []});
}