Implemented note templates and enhanced usability by adjusting the dimension of the note dialogs

This commit is contained in:
Dennis Nemec
2026-01-08 14:10:21 +01:00
parent 6a53d2d716
commit ffdd7fa0ff
6 changed files with 98 additions and 56 deletions

View File

@ -70,6 +70,7 @@ class ImageUpdated extends NoteEvent {
class DataUpdated extends NoteEvent {
final List<ImageNote> images;
final List<Note> notes;
final List<NoteTemplate> templates;
DataUpdated({required this.images, required this.notes});
DataUpdated({required this.images, required this.notes, required this.templates});
}