auto-claude: subtask-2-2 - Create NotesDialog component for displaying delivery notes

- Add reusable NotesDialog component that extracts and displays notes from delivery orders
- Add static show() method for convenient dialog display with empty notes handling
- Add localization strings for notes dialog (EN/FR): notesTitle, noNotesMessage, close
- Follow existing dialog pattern from NavigationTermsAndConditionsDialog

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-01-20 11:28:31 -05:00
parent f3a05099ab
commit bcc938fde1
6 changed files with 162 additions and 2 deletions
+18
View File
@@ -559,6 +559,24 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Upload'**
String get upload;
/// No description provided for @notesTitle.
///
/// In en, this message translates to:
/// **'Notes for {name}'**
String notesTitle(String name);
/// No description provided for @noNotesMessage.
///
/// In en, this message translates to:
/// **'No notes attached to this delivery'**
String get noNotesMessage;
/// No description provided for @close.
///
/// In en, this message translates to:
/// **'Close'**
String get close;
}
class _AppLocalizationsDelegate