Hooks up rename prompt
This commit is contained in:
parent
2bc99f6bd9
commit
dc6dffc3ba
4 changed files with 121 additions and 3 deletions
|
@ -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 []});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue